export type ElementStyle = { property: string; value: string | null; priority?: string; }; export type ElementAttribute = { name: string; value: string; }; export declare const createHtmlElement: (type: string, styles?: ElementStyle[], attributes?: ElementAttribute[]) => HTMLElement;