/** * Formats a Date object into a string based on the specified format. * @param date The Date object to format. * @param format The target format string (e.g., "MM/DD/YYYY"). * @returns The formatted date string. */ export declare function formatDateCustom(date: Date, format: string): string; /** * Formats the time part of a Date object. * @param date The Date object. * @returns The formatted time string (e.g., "09:28:00 AM"). */ export declare function formatTime(date: Date): string;