/** * Calculate remaining time until next TOTP code * * @param period - Time period in seconds (default: 30) * @param now - Current timestamp in milliseconds (default: Date.now()) * * @returns Seconds remaining until next code */ export declare const timeRemaining: (period?: number, now?: number) => number;