import type { Result } from "./types.js"; type ProfileEntry = { clientId: string; clientSecret: string; refreshToken: string; }; export declare const helpers: { readConfigWithPath(): [string, string] | null; }; export declare function profilesFromConfig(): Result<{ profiles: string[]; configPath: string; }>; export declare function credentialsFromConfig(profile: string): Result; export {};