import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3AccountmanagementRemoveOrgMemberRequest = { /** * The ID of a Censys organization. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-find-and-use-your-organization-id-optional) for more information. */ organizationId: string; /** * The ID of a Censys user. You can obtain a user's ID by listing members of an organization. */ userId: string; }; export type V3AccountmanagementRemoveOrgMemberResponse = { headers: { [k: string]: Array; }; }; /** @internal */ export type V3AccountmanagementRemoveOrgMemberRequest$Outbound = { organization_id: string; user_id: string; }; /** @internal */ export declare const V3AccountmanagementRemoveOrgMemberRequest$outboundSchema: z.ZodType; export declare function v3AccountmanagementRemoveOrgMemberRequestToJSON(v3AccountmanagementRemoveOrgMemberRequest: V3AccountmanagementRemoveOrgMemberRequest): string; /** @internal */ export declare const V3AccountmanagementRemoveOrgMemberResponse$inboundSchema: z.ZodType; export declare function v3AccountmanagementRemoveOrgMemberResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3accountmanagementremoveorgmember.d.ts.map