import { type DrizzleExecutor } from "../drizzle.js"; /** * Creates the sole default-agent users identity from one configured ready image and builds its required channel and conversation substrate. * The identity, memberships, default-agent conversations, and sync history commit atomically; setup owns when this action may be invoked and records its onboarding step separately. */ export declare function agentDefaultCreate(executor: DrizzleExecutor, input: { actorUserId: string; imageId: string; name: string; username: string; }): Promise<{ id: string; name: string; username: string; imageId: string; }>; //# sourceMappingURL=agentDefaultCreate.d.ts.map