import React from 'react'; import { DateInputProps } from './types'; export type { DateInputProps }; export declare const buttonLabel: { es: string; 'es-ES': string; en: string; 'en-US': string; pt: string; 'pt-BR': string; }; export declare const DateInput: React.ForwardRefExoticComponent & { minDate?: string | undefined; maxDate?: string | undefined; startDate?: string | undefined; endDate?: string | undefined; disabledDates?: string[] | undefined; isRange?: boolean | undefined; allowsNonContiguousRanges?: boolean | undefined; onChange?: ((val: { startDate?: string | undefined; endDate?: string | undefined; }) => void) | undefined; } & React.RefAttributes>; //# sourceMappingURL=index.d.ts.map