import React from 'react'; export interface DateInputProps { format?: string; label?: string; value?: string; onChange?: (date: string) => void; } export declare const DateInput: React.FC;