import { default as React } from 'react';
export interface DateFieldProps {
    label?: string;
    value?: Date | null;
    onChange: (date: Date | null) => void;
    variant?: string;
    disableFutureDateValidation?: boolean;
    placeholder?: string;
    styles?: {
        disabled?: boolean;
        required?: boolean;
        theme?: string;
        helperTextType?: string;
        height?: string;
        fontSize?: string;
        borderRadius?: string;
        marginBottom?: string;
        marginTop?: string;
        width?: string;
        minHeight?: string;
        padding?: string;
    };
    helperText?: string;
}
declare const DateField: React.FC<DateFieldProps>;
export default DateField;
//# sourceMappingURL=index.d.ts.map