import * as React from "react"; export interface ReactComponentProps { className?: string; style?: React.CSSProperties; children?: React.ReactNode; } /** * add {[key:string]:any} to props P */ export declare type MixinAny

= P & { [key: string]: any; }; /** * forwardRef component */ export declare type ForwardRefComponent

= React.ForwardRefExoticComponent & React.RefAttributes> & { propTypes?: React.WeakValidationMap

; }; /** * remove the certain prop from props P */ export declare type Omit = Pick>;