export interface DatePickerProps {
    value: Date | undefined | null;
    onChange: (date: Date | null) => void;
    placeholder?: string;
    label?: string;
    minDate?: Date;
    maxDate?: Date;
    invalidDateMsg?: string;
}
export interface InvalidDateMsgProps {
    msg: string;
}
