export interface Credential { apiUrl: string; username: string; token: string; isAdmin: boolean; savedAt: string; } export declare function loadCredentials(apiUrl: string): Credential | null; export declare function listCredentials(): Credential[]; export declare function saveCredentials(cred: Omit & { savedAt?: string; }): Credential; export declare function credentialsFilePath(): string; //# sourceMappingURL=credentials.d.ts.map