import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { PaginationResponse } from "./pagination-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { UserResponse } from "./user-response.js"; export type ListUsersResponse = { items?: Array | undefined; pagination?: PaginationResponse | undefined; }; /** @internal */ export declare const ListUsersResponse$inboundSchema: z.ZodMiniType; export declare function listUsersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=list-users-response.d.ts.map