export interface CredentialEntry { key: string; value: string; source: string; } export interface NetrcEntry { machine: string; login?: string; password?: string; account?: string; } export declare function loadDotEnv(filePath?: string): Promise; export declare function loadNetrc(filePath?: string): Promise; export declare function loadJsonCredentials(filePath: string): Promise>; export declare function findCredential(key: string, searchPaths?: string[]): Promise; export declare function loadClaudeCredentials(): Promise>; export declare function loadGitCredentials(host: string): Promise<{ username?: string; password?: string; } | null>; export declare function maskSecret(value: string, visibleChars?: number): string; //# sourceMappingURL=credential-files.d.ts.map