export interface CrofApiKeyResult { key: string; source: CrofKeySource; } export type CrofKeySource = "env:CROF_API_KEY" | "env:CROFAI_API_KEY" | "opencode.json" | "opencode.jsonc" | "auth.json"; export { getGlobalOpencodeConfigCandidatePaths as getOpencodeConfigCandidatePaths } from "./api-key-resolver.js"; export declare function resolveCrofApiKey(): Promise; export declare function hasCrofApiKey(): Promise; export declare function getCrofKeyDiagnostics(): Promise<{ configured: boolean; source: CrofKeySource | null; checkedPaths: string[]; authPaths: string[]; }>; //# sourceMappingURL=crof-config.d.ts.map