import { default as dayjs } from 'dayjs'; declare const dateFormat: (date: string) => string; export declare const formatOnlyTime: (time: any, date?: any, format?: any) => string | dayjs.Dayjs; export declare const formatDate: (date?: any, format?: any) => string; export declare const formatDataTime: (date: string) => string; export { dateFormat }; export default dateFormat; export declare const getMinutesFromTime: (timeString: any) => number; export declare const getTimeFromMinutes: (minutes: any) => string; export declare const UTCDateFormat: (date: string, format: any) => string; export declare const formatUtcDate: (date?: any, format?: any) => any;