/** * Generates a timestamp. * If no format is provided, returns the Linux time (epoch seconds) as a string. * @param format - Optional format string for the timestamp. * @returns The formatted timestamp. */ export declare function timestamp(format?: string): string;