import type { CalendarSteps } from '../../../Calendar';
export declare const parseDateString: (value: string | null | undefined, steps: CalendarSteps) => {
    year: string;
    month: string;
    day: string;
} | null;
