/** * Check that the input string is in a valid time format * @param input - input string to test * @returns */ export declare const isValidTime: (input?: string | undefined) => boolean; /** * Parse an input string and convert it into an object containing numerical hours and minutes. * @param input - input string to be converted * @returns */ export declare const parseTimeFromString: (input?: string | undefined) => { hours: number; minutes: number; };