import React from 'react'; declare type TFunction = (args: any) => React.ReactChild; export declare type TLabel = string | React.ReactNode | TFunction; export interface IData { value: string; label: TLabel; width?: number; disabled?: boolean; id?: number; } export {};