import * as React from "react"; import type { FormLabelTextFieldProps } from "@vertigis/react-ui/FormLabelTextField"; /** * A `FormLabelTextField` to be used in Date/Time Form Elements. * We use this as a way to intercept the default placeholder text that MUI provides. * This is the format string, which we also show in our validation errors. * By storing it in a data property, we can retrieve it later via the parent component's inputRef. * @param props * @returns A `FormLabelTextField` with a `data-format-string` attribute containing the component's format string. */ declare const DateTimeTextField: (props: FormLabelTextFieldProps) => React.JSX.Element; export default DateTimeTextField;