/**
 * Helper for making Elements with class name and attributes
 * @param tagName - new Element tag name
 * @param classNames - list or name of CSS class name(s)
 * @param attributes - any attributes
 * @returns created HTMLElement
 */
export declare function make(tagName: string, classNames?: string | (string | undefined)[] | null, attributes?: object): HTMLElement;
