import { type DrizzleExecutor } from "../drizzle.js"; /** * Reports username availability by performing a case-insensitive lookup across every persisted user identity. * Including deleted and non-agent rows preserves the global namespace and prevents a new agent from reclaiming an existing spelling variant. */ export declare function agentUsernameIsAvailable(executor: DrizzleExecutor, username: string): Promise; //# sourceMappingURL=agentUsernameIsAvailable.d.ts.map