import type React from 'react'; import { type AuthPanelState } from './auth-panel-model.js'; export interface AuthPanelProps { panel: AuthPanelState; } export declare function formatExpiry(expiresAt: string | undefined): { text: string; color: string; } | null; export declare function isAuthFlowUrlLine(line: string): boolean; /** Keep the newest authorize URL pinned even as later status lines arrive. */ export declare function latestAuthFlowUrl(lines: readonly string[]): string | undefined; export declare function AuthPanel({ panel }: AuthPanelProps): React.ReactElement; //# sourceMappingURL=auth-panel.d.ts.map