import { JSX } from 'react';
import { OptionalTextInputProps } from '../TextInput/TextInput';
export type DateInputProps = {
    id: string;
    name: string;
    label: string;
    unit: 'month' | 'day' | 'year';
    maxLength: number;
    minLength?: number;
} & OptionalTextInputProps;
export declare const DateInput: ({ id, name, label, unit, maxLength, minLength, className, ...inputProps }: DateInputProps) => JSX.Element;
export default DateInput;
