type Attributes = {
    -readonly [Atttribute in keyof HTMLElement]?: HTMLElement[Atttribute];
};
type Tag = keyof HTMLElementTagNameMap;
export declare function createElement(tag: Tag, attributes: Attributes): HTMLElement;
export {};
