export declare type Omit = Pick>; export declare const tuple: (...args: T) => T; export declare const tupleNum: (...args: T) => T; export interface IDict { [key: string]: T; } export declare type CommonTypeTuple = string | boolean | number | undefined; export declare type ITheme = IDict; export declare type ChangeHandler = (value: T, name: string, exactValue?: any) => void; export declare type BlurHandler = (value: T, name?: string) => void;