import React from 'react'; export declare const DateTextInput: ({ format, value: rawValue, onBlur, onChange, autoFocus, ...props }: { format?: string; value?: Date; autoFocus?: boolean; onBlur?: React.FocusEventHandler; onChange: (e: any) => any; }) => import("react/jsx-runtime").JSX.Element;