/** * Helpers for schedule date/time fields shared across onboarding and scheduling flows. */ /** Parse `YYYY-MM-DD` into a local Date at midnight. */ export declare function parseScheduleDate(value?: string | null): Date | null; /** Format a local Date as `YYYY-MM-DD`. */ export declare function formatScheduleDate(date: Date | null): string;