declare type CreteElementOptions = {
    className?: string;
    child?: Element;
};
export declare function createElement<K extends keyof HTMLElementTagNameMap>(key: K, options?: CreteElementOptions): HTMLElementTagNameMap[K];
export {};
