declare const get_config_dir: () => string; type Credentials = { api_key: string; }; declare const load: () => Credentials | null; declare const save: (creds: Credentials) => void; declare const clear: () => void; declare const get_api_key: () => string | undefined; export { get_config_dir, load, save, clear, get_api_key }; export type { Credentials }; //# sourceMappingURL=credentials.d.ts.map