import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * DateTimeField - Combined date and time picker widget * Displays both date and time in locale format when readonly */ export declare function DateTimeField({ value, onChange, field, readonly, ...props }: FieldWidgetComponentProps): React.JSX.Element;