import { AsyncSelectCell, ButtonCell, CreatableSelectCell, CurrencyInputCell, DatePickerCell, DurationInputCell, IconButtonCell, IconCell, LinkCell, NumberCell, RowActionsCell, SearchInputCell, SelectCell, StatusBadgeCell, SwitchCell, TextCell, TextInputCell, TimePickerCell } from "../Cells"; import CustomCell from "../Cells/Custom"; import { NumberCellProps } from "../Cells/Number/types"; import SearchSelectInputCell from "../Cells/SearchSelectInput"; import { TextCellProps } from "../Cells/Text/types"; export declare const DEFAULT_EMPTY_PLACEHOLDER = "-"; export declare const CELL_TYPES: { text: { component: typeof TextCell; getCellProps: (colId: string, rowData: unknown) => TextCellProps; }; link: { component: typeof LinkCell; getCellProps: () => any; }; iconButton: { component: typeof IconButtonCell; getCellProps: () => any; }; icon: { component: typeof IconCell; getCellProps: () => any; }; number: { component: typeof NumberCell; getCellProps: (colId: string, rowData: unknown) => NumberCellProps; }; statusBadge: { component: typeof StatusBadgeCell; getCellProps: () => any; }; button: { component: typeof ButtonCell; getCellProps: () => any; }; rowActions: { component: typeof RowActionsCell; getCellProps: () => any; }; switch: { component: typeof SwitchCell; getCellProps: () => any; }; textInput: { component: typeof TextInputCell; getCellProps: () => any; }; select: { component: typeof SelectCell; getCellProps: () => any; }; currencyInput: { component: typeof CurrencyInputCell; getCellProps: () => any; }; durationInput: { component: typeof DurationInputCell; getCellProps: () => any; }; searchInput: { component: typeof SearchInputCell; getCellProps: () => any; }; timePicker: { component: typeof TimePickerCell; getCellProps: () => any; }; datePicker: { component: typeof DatePickerCell; getCellProps: () => any; }; asyncSelect: { component: typeof AsyncSelectCell; getCellProps: () => any; }; creatableSelect: { component: typeof CreatableSelectCell; getCellProps: () => any; }; searchSelectInput: { component: typeof SearchSelectInputCell; getCellProps: () => any; }; custom: { component: typeof CustomCell; getCellProps: () => any; }; }; //# sourceMappingURL=constants.d.ts.map