declare function convertToHours(value: string): string; declare function convertToHours(value: string, asNumber: true): number; declare function convertToHours(value: string, asNumber: false): string; declare function convertFromHours(value: string): string; declare function convertToWholeFromHours(value: string): string; export { convertFromHours, convertToHours, convertToWholeFromHours };