export declare type Hours = string | number;
export declare type Minutes = string | number;
declare type TwelveHourTime = '12-hour';
declare type TwentyFourHourTime = '24-hour';
export declare enum TimeFormat {
    twelveHour = "12-hour",
    twentyFourHour = "24-hour"
}
export interface ConvertTimeOptions {
    convertTo?: TwelveHourTime | TwentyFourHourTime;
    format?: string;
}
export {};
