export declare class Time { /** * Returns recent time * * @param format 'abbr' || 'wide' || 'unix' (default) * * @example * faker.time.recent() // 1643067231856 * faker.time.recent('abbr') // '12:34:07 AM' * faker.time.recent('wide') // '00:34:11 GMT+0100 (Central European Standard Time)' * faker.time.recent('unix') // 1643067231856 */ recent(format?: 'abbr' | 'wide' | 'unix'): string | number; }