import { FieldBaseProps } from '../base/fieldBase'; /** * Props for {@link TimeField}. * Extends {@link FieldBaseProps}. * * @category TimeField */ export type TimeFieldProps = Omit; /** * Time field component used to enter time values. * * Use for selecting hours and minutes in forms. * * @category TimeField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const TimeField: import('react').ForwardRefExoticComponent>;