import type { LocaleConfig } from '../core/types'; /** * Parse a date string according to a format string. * Returns null for invalid / out-of-range dates. */ export declare function parseDate(input: string, format: string, locale?: Partial): Date | null;