import React from 'react';
export interface DateInputTestProps {
    dropdownType?: 'modal' | 'popover';
    type?: any;
    closeOnChange?: boolean;
    value?: any;
    onChange?(value: any): void;
    placeholder?: string;
    allowDeselect?: boolean;
    allowSingleDateInRange?: boolean;
    readOnly?: boolean;
    clearable?: boolean;
    clearButtonProps?: Record<string, any>;
    name?: string;
    form?: string;
}
export declare function itSupportsDateInputProps(Component: React.FC<DateInputTestProps>, requiredProps?: Record<string, any>): void;
//# sourceMappingURL=it-supports-date-input-props.d.ts.map