import { Locale } from '../locales'; interface ParseDateOptions { locale?: Locale; withWeekday?: boolean; weekday?: 'long' | 'short' | 'narrow'; } export declare function parseDate(value: Date, options?: ParseDateOptions): string; export {};