export declare const parseCredentialFile: (contents: string) => Record; export declare const loadCredentialFile: (filePath?: string, forceReload?: boolean) => Record; /** * Resolves a credential name. The process environment wins over the file, so a * one-off `GITHUB_TOKEN=… codali ask …` overrides the stored value without * editing anything. */ export declare const resolveCredential: (name: string) => string | undefined; /** Test-only: drops the cached file so a fresh read can be exercised. */ export declare const resetCredentialCache: () => void; export declare const credentialFilePath: () => string; //# sourceMappingURL=CredentialFile.d.ts.map