/**
 * Turns 12h format time to 24h time
 * @reference https://www.timecalculator.net/12-hour-to-24-hour-converter
 */
declare const to24htime: (time: string) => string;
export default to24htime;
