export interface IKeyValues<T = any> {
    [key: string]: T;
}
export declare type TOption = Array<{
    key?: string;
    text: string;
    value: string;
}>;
