import { Command } from 'commander'; import type { GlobalOptions } from '../types.js'; import type { PackagedSource } from '../local-source.js'; /** Verify the server receipt describes the exact uploaded snapshot. */ export declare function validateSourceReceipt(receipt: Record, source: PackagedSource, projectId: string): void; /** Upload a local snapshot and submit it once to the existing approval state machine. */ export declare function deployLocalSource(options: GlobalOptions, sourceDirectory: string): Promise; /** Seed the static hosted parent so server-provided hosted commands share it. */ export declare function registerHostedLocalCommand(program: Command, getOptions: () => GlobalOptions): Command; //# sourceMappingURL=hosted-local.d.ts.map