import type { Properties as CSSProperties } from 'csstype'; type KeysWithType = { [P in keyof Target]: Target[P] extends Type ? P : never; }[keyof Target]; type ExtractWithType = Pick>>; export declare function createElement>(name: TagName, props?: Partial & { style?: CSSProperties; }, children?: string | HTMLElement | HTMLElement[]): Element; export {};