import React from 'react'; import { TextInputProps } from '../TextInput/TextInput'; import { TimePrecision, IDatePickerProps } from '@blueprintjs/datetime'; import { PopoverProps } from '../Popover/Popover'; export interface DateInputProps extends Omit { dateTimeFormat?: string; dateProps?: IDatePickerProps; timePrecision?: TimePrecision; onChange?: (value: string | undefined, error?: string) => void; allowVariables?: boolean; popoverProps?: PopoverProps; } export declare const DateInput: React.FC;