import type { TimeInputData } from './FmTimeInput.vue'; export declare enum Period { AM = "AM", PM = "PM" } export declare function formatTime(input: number): string; export declare function to12(time: string): string; export declare function toTimeInputData(time: string): TimeInputData; export declare function to24({ hours, minutes, period, }: { hours: number; minutes: number; period: string; }): string;