import React, { ComponentType, Ref, ReactNode } from 'react'; import { InputProps } from './Input'; import { DatepickerProps } from './Datepicker'; /** * */ export type DateInputProps = { value?: string | null; defaultValue?: string | null; opened?: boolean; defaultOpened?: boolean; dateFormat?: string; parsingFormats?: string[]; includeTime?: boolean; minDate?: string; maxDate?: string; menuAlign?: 'left' | 'right'; tooltip?: ReactNode; tooltipIcon?: string; elementRef?: Ref; datepickerRef?: Ref; onBlur?: () => void; onValueChange?: (value: string | null, prevValue: string | null) => void; onComplete?: () => void; extensionRenderer?: ComponentType; } & Omit; /** * */ export declare const DateInput: React.FC & { isFormElement: boolean; };