import { MinutesFormatTypes, SecondsFormatTypes, TimeFormatTypes } from "./TimePicker.interface"; export declare const useTimePickerHelpers: () => { getMinutes: (minuteFormat: MinutesFormatTypes) => string[]; getSeconds: (secondsFormat: SecondsFormatTypes) => string[]; defineEnabledInputKeyboardKeys: () => string[]; getMaskedValue: (value: string, timeFormat: TimeFormatTypes) => string; isTimeValid: (value: string, timeFormat: TimeFormatTypes) => boolean; };