export interface IDateRangeInput {
    id?: string;
    style?: React.CSSProperties;
    dates: string[];
    handleChange: (date: string[]) => void;
    inputFormat?: string;
    displayFormat?: string;
    UiLanguage: string;
    hideFooter?: boolean;
    hideHeader?: boolean;
    target?: JSX.Element;
    label?: string;
    required?: boolean;
    buttonFormClass?: string;
}
