import React from "react"; interface DatePickerProps { date: Date | undefined; onDateChange: (date: Date | undefined) => void; placeholder: string; } export declare const DatePicker: ({ date, onDateChange, placeholder }: DatePickerProps) => React.ReactElement; export {}; //# sourceMappingURL=DatePicker.d.ts.map