import { type ImportedAgentProfile } from "./simple-agent-profile.js"; export declare const AGENT_PACK_MAX_FILES = 80; export declare const AGENT_PACK_MAX_FILE_BYTES = 200000; export declare const AGENT_PACK_MAX_TOTAL_BYTES = 2000000; export interface AgentPackFileInput { path: string; content: string; } export interface NormalizedAgentPackFile { path: string; content: string; name: string; description?: string; kind: "agent-file" | "skill"; } export interface NormalizedAgentPack { profile: ImportedAgentProfile; profileFile: AgentPackFileInput; files: NormalizedAgentPackFile[]; warnings: string[]; totalBytes: number; } export declare function normalizeAgentPack(inputFiles: AgentPackFileInput[]): NormalizedAgentPack; export declare function agentPackProfileContent(input: { profile: ImportedAgentProfile; tools?: string; sourceHash?: string; importedAt?: string; }): string; export declare function agentPackRoot(agentNameOrSlug: string): string; //# sourceMappingURL=agent-pack.d.ts.map