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 ;
};
/**
* remove the certain prop from props P
*/
export declare type Omit = Pick >;