import type { UserManagementTypes } from "@cargo-ai/types"; import { z } from "zod"; import type { ApiType, DateToString } from "../types.js"; export declare namespace UserManagement { type User = ApiType; namespace Api { type GetCurrentUserResult = { user: User; }; type UpdateCurrentUserPayload = DateToString<{ firstName?: string; lastName?: string; webExtensionData?: UserManagementTypes.UserWebExtensionData; }>; type UpdateCurrentUserResult = { user: User; }; const zodUpdateUserErrorReason: z.ZodEnum<{ userNotFound: "userNotFound"; }>; } const userKeys: { getCurrent: () => readonly ["users", "getCurrent"]; }; } //# sourceMappingURL=userManagement.d.ts.map