import { DateValue, DateLocale } from '../types/Dates';
declare const parseDate: (date: DateValue | undefined | null, fromFormat?: string, timeless?: boolean | undefined, customLocale?: DateLocale | undefined) => Date | undefined;
export default parseDate;
