import * as React from 'react'; export declare type Nullable = T | null; export declare type StringPropertyNames = { [K in keyof T]: T[K] extends string ? K : never; }[keyof T]; export declare type Replace = S extends `${infer Left}${MatchStr}${infer Right}` ? `${Left}${ReplaceStr}${Right}` : S; export interface HTMLProps { className?: string; style?: React.CSSProperties & Partial; }