import { ChangeEvent } from "react";
interface DateProps {
    value: string;
    minDate?: string;
    maxDate?: string;
    onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
    disabled?: boolean;
    bold?: boolean;
    border?: "default" | "pill" | "rounded";
    borderStyle?: "dotted" | "dashed" | "solid";
    borderColor?: string;
    colorDate?: string;
    backgroundColorInput?: string;
    displayHours?: string;
}
declare function Date({ value, minDate, maxDate, onChange, disabled, bold, border, borderStyle, borderColor, colorDate, backgroundColorInput, displayHours }: DateProps): JSX.Element;
export default Date;
//# sourceMappingURL=index.d.ts.map