import { TimeStr } from '../../../datetime/time'; export interface PickerOption { value: string; label: string; } export declare const getHoursOptions: (min?: TimeStr, max?: TimeStr, forMeridiem?: string) => PickerOption[]; export declare const getMinutesOptions: (step: number | null, value?: TimeStr, min?: TimeStr, max?: TimeStr) => PickerOption[]; export declare const getSecondsOptions: (step: number, value?: TimeStr, min?: TimeStr, max?: TimeStr) => PickerOption[]; export declare const getMeridiesOptions: (min?: TimeStr, max?: TimeStr) => PickerOption[];