import { Locale } from '../../../../node_modules/date-fns/locale/types.d.ts'; export declare function getDuration(minutes: number, locale: string, unit?: 'long' | 'short' | 'narrow'): string; export declare const toDate: (date: string, locale: Locale) => string; export declare const toTime: (date: string, locale: Locale) => string; export declare const toDateAndTime: (date: string, locale: Locale) => { date: string; time: string; };