export declare const AGENT_NATIVE_PACKAGE_MANIFEST_VERSION: 1; export interface AgentNativePackageManifest { manifestVersion: typeof AGENT_NATIVE_PACKAGE_MANIFEST_VERSION; name: string; actions: string[]; schemaEntryPoint: string; docs: { llms: string; llmsFull: string; skills: string[]; }; requiredSecrets: { key: string; label: string; optional?: boolean; }[]; peerProviders: string[]; eject?: { sourceRoot: string; targetDirectory: string; }; } export declare function assertAgentNativePackageManifest(value: unknown): asserts value is AgentNativePackageManifest; //# sourceMappingURL=manifest.d.ts.map