/**
 * Prepends a 0 to n if n is less than 10, and returns that as a string.
 */
export declare function prependZero(n: number, u?: number): string;
export declare function formatDate(date: Date): string;
export declare function formatTime(date: Date): string;
