import React from 'react'; export interface TimePickerProps { /** * The unique identifier for the input */ id: string; /** * The name of the input */ name?: string; /** * The time picker will use this regular expression to filter the time picker options. */ filter?: string; /** * The start time used in the time picker in hh:mm 24-hour format. The default is 00:00. */ minTime?: string; /** * The end time used for the time picker in hh:mm 24-hour format. The default is 23:59. */ maxTime?: string; /** * The number of minutes between options. The minimum is 1 minute and the default is 30 minutes. */ step?: number; /** * Event handler will be triggered when the time-picker value changes */ onChange?: (this: HTMLInputElement, event: Event) => void; } /** * A time picker helps users select a specific time. */ export declare const TimePicker: ({ filter, minTime, maxTime, step, onChange, ...inputProps }: TimePickerProps & JSX.IntrinsicElements['input']) => React.ReactElement; export default TimePicker;