import { HourFormatTypes, MinutesFormats, SecondsFormats, TimeFormats } from "./TimePicker.interface"; export declare const useTimePickerHelpers: () => { getMinutes: (minuteFormat: MinutesFormats) => string[]; getSeconds: (secondsFormat: SecondsFormats) => string[]; defineEnabledInputKeyboardKeys: () => string[]; getMaskedValue: (value: string, timeFormat: TimeFormats) => string; isInputValueValidWhileTyping: (value: string, timeFormat: TimeFormats, hoursFormat: HourFormatTypes) => boolean; getTimePartsFromValue: (value: string) => { hours: string; minutes: string; seconds: string; }; isInputValueValid: (value: string, timeFormat: TimeFormats, hoursFormat: HourFormatTypes) => boolean; };