/** * CLI credential storage * Uses ~/.reconstruct/credentials.json (no native deps like keytar) */ export interface Credentials { access_token: string; expires_at: string; user_id?: string; } export declare function getCredentialsPath(): Promise; export declare function readCredentials(): Promise; export declare function writeCredentials(creds: Credentials): Promise; export declare function clearCredentials(): Promise; export declare function isExpired(creds: Credentials): boolean; //# sourceMappingURL=auth.d.ts.map