import type { GuideBundleResponse } from '@auden.to/protocol'; export type PullGuideBundleOptions = { dashboardUrl: string; token: string; bundlePath: string; fetchFn?: typeof fetch; }; export type PullGuideBundleResult = { bundle: GuideBundleResponse; bundlePath: string; /** * Server-advertised "current published version", when this deployment * configured one. Read off the raw body rather than the parsed bundle so it * never reaches `guides.json` — the cache is the offline guide set, and a * version pinned into it would outlive the request that advertised it. */ cliLatest?: string; }; export declare function pullGuideBundle(opts: PullGuideBundleOptions): Promise; //# sourceMappingURL=pull-bundle.d.ts.map