import { FieldBaseProps } from '../base/fieldBase'; /** * Props for {@link DateTimeField}. * Extends {@link FieldBaseProps}. * * @category DateTimeField */ export type DateTimeFieldProps = Omit; /** * Date and time field component used to enter combined date and time values. * * Use for scheduling and time-based form input. * * @category DateTimeField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const DateTimeField: import('react').ForwardRefExoticComponent>;