declare global { namespace JSX { interface IntrinsicAttributes { __ssr_scope?: any; ref?: any; } interface IntrinsicElements { slot: { children?: any; name?: string; }; } } } export declare type StyleProps = Function | { [s: string]: StyleValue; }; export declare type StyleRules = Function | { [s: string]: StyleProps; }; export declare type StyleValue = Function | string | number | Array;