import { IColorObj } from './types'; export declare function isValidKey(key: string | number | symbol, object: object): key is keyof typeof object; export declare const toHex: (n: number) => string; export declare const toHexString: (colorObj: IColorObj) => string; export declare const createDocument: (elType: T, styleObj: Record, parent: HTMLElement | DocumentFragment) => HTMLElementTagNameMap[T]; export declare const getId: () => string;