import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type CreateWorkspaceUserResponse = {
    /**
     * The ID of the workspace
     */
    workspaceId?: string | undefined;
    /**
     * The ID of the user
     */
    userId?: string | undefined;
    /**
     * The ID of the role assigned to the user
     */
    roleId?: string | undefined;
    /**
     * The email of the user
     */
    email?: string | null | undefined;
    /**
     * The first name of the user
     */
    firstName?: string | null | undefined;
    /**
     * The last name of the user
     */
    lastName?: string | null | undefined;
};
/** @internal */
export declare const CreateWorkspaceUserResponse$inboundSchema: z.ZodType<CreateWorkspaceUserResponse, z.ZodTypeDef, unknown>;
export declare function createWorkspaceUserResponseFromJSON(jsonString: string): SafeParseResult<CreateWorkspaceUserResponse, SDKValidationError>;
//# sourceMappingURL=createworkspaceuserresponse.d.ts.map