import { TimeFormat } from '../types'; /** * Converts hours and minutes to a formatted time string. * * @param hours - Hours (0-23) * @param minutes - Minutes (0-59) * @param format - Target format (12 or 24 hour) * @returns Formatted time string */ export declare function formatTimeString(hours: number, minutes: number, format: TimeFormat): string;