export type STimePickerSize = 'sm' | 'md'; export type STimePickerType = 'default' | 'midday'; export type STimePickerMeridiem = 'AM' | 'PM'; export declare const TIMEPICKER_SIZES: readonly ["sm", "md"]; export declare const TIMEPICKER_SIZE_CONFIG: Record; export declare function clampTimePart(value: number, min: number, max: number): number; export declare function padTimePart(value: number): string; export declare function parseTimeValue(value: string | null | undefined): { hour: number; minute: number; }; export declare function formatTimeValue(hour: number, minute: number): string; export declare function formatTimeDisplay(value: string | null | undefined, type: STimePickerType): string;