export interface Props { children?: any; } export declare const h: (tagName: Function | string, props?: object, ...children: any[]) => any; export declare const Fragment: ({ children }?: { children: any[]; }) => string;