import { TimeFieldProps } from './internal/types'; /** * TimeField component for entering time values with auto-rounding and suggestions. * * Features: * - Supports 12-hour and 24-hour time formats * - Min/max time constraints handled during input parsing * - Auto-rounding to step intervals when autoround is true * - Dropdown suggestions for quick time selection * - Controlled and uncontrolled modes * - Smart input masking with placeholders * - Integration with MaskedTimeInput for auto-complete * - Validation handled by implementors using onChange callback * * @example * { * // Handle time change and validation * if (change.isInputEmpty && required) { * // Show required error * } * }} * /> */ export declare const TimeFieldElement: import('react').ForwardRefExoticComponent>; export declare const TimeField: import('react').ForwardRefExoticComponent>;