export interface TimeOption { label: string; value: number; index: number; disabled: boolean; } export interface TimePickerOptionsProps { availableHeight: number; fill?: boolean; timeHourPickerOptions: TimeOption[]; timeMinutePickerOptions: TimeOption[]; selectedTimeHour?: number; selectedTimeMinute?: number; onChangeHour?: (option: number) => void; onChangeMinute?: (option: number) => void; } export declare const TIME_PICKER_COLUMN_HEIGHT = 340; export declare const TIME_PICKER_OPTION_VERTICAL_PADDING = 8; export declare const TIME_PICKER_CELL_HEIGHT: number; export declare const TIME_PICKER_SAFE_AREA = 100; export declare const TimePickerOptions: ({ availableHeight, timeHourPickerOptions, timeMinutePickerOptions, selectedTimeHour, selectedTimeMinute, fill, onChangeHour, onChangeMinute, }: TimePickerOptionsProps) => import("@emotion/react/jsx-runtime").JSX.Element;