import { type WorkspaceResourceInput } from "./workspace-resources-store.js"; /** * Apply a pack as one logical operation. Approval is handled by the action * before this helper is called, so this function must never call the * approval-aware create wrapper for individual files. */ export declare function applyAgentPackCreate(inputs: WorkspaceResourceInput[], actor?: string, ctx?: { ownerEmail: string; orgId: string | null; }): Promise<{ id: string; ownerEmail: string; orgId: string | null; kind: string; name: string; description: string | null; path: string; content: string; scope: string; createdBy: string; createdAt: number; updatedAt: number; }[]>; //# sourceMappingURL=agent-pack-store.d.ts.map