import { type AgentManualRuntime } from "./flows/agent-manual.js"; export interface VaultInstallProviderObjectV1 { readonly object_id: string; readonly kind: "marker-file"; readonly provider_package: "@younndai/lyt-vault"; readonly provider_version: string; readonly target_path: string; readonly content: string; readonly expected_digest: string; readonly marker_begin: string; readonly marker_end: string; readonly trusted_legacy_digests: readonly string[]; } export declare function buildVaultInstallProviderObjectsV1(options: { version: string; homeDir?: string; runtimes: readonly Exclude[]; skillsDir: string; }): Promise; //# sourceMappingURL=install-provider.d.ts.map