import React, { FC } from 'react'; import { InputProps } from '../Input'; export declare const defaultFormat = "MM/DD/YYYY"; export declare const defaultMaskChar = "_"; export interface InputDateMaskProps extends Omit { /** If the mask should always be present. */ alwaysShowMask?: boolean; /** Format of date string to display. Default is "MM/DD/YYYY" */ dateFormat?: string; /** Character to use with partially complete dates */ maskChar?: string; /** Maximum date allowed */ maxDate?: Date; /** Minimum date allowed */ minDate?: Date; /** onChange function */ onChange(value: Date | undefined, data?: any): void; /** onChange function */ onBlur(value: Date | undefined, data?: any): void; /** Current value of Input */ value?: Date; /** forwarded refs */ inputRef?: React.RefObject; calendarRef?: React.RefObject; } export declare const InputDateMask: FC;