import { DataTypeEnum } from './Types'; /** * used to get key of index options map and default index map * @param dataType DataTypeEnum * @returns DataTypeEnum || 'DEFAULT' */ export declare const getDataTypeKey: (dataType: DataTypeEnum) => DataTypeEnum | "DEFAULT"; export declare const formatDate: (day: number | Date) => string; export declare const deconstructTime: (time: number) => { date: number; time: string; splitter: string; } | { date: Date; time: string; splitter: string; };