import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type RemoveProjectMemberRequest = {
    /**
     * The ID or name of the Project.
     */
    idOrName: string;
    /**
     * The user ID of the member.
     */
    uid: string;
    /**
     * The Team identifier to perform the request on behalf of.
     */
    teamId?: string | undefined;
    /**
     * The Team slug to perform the request on behalf of.
     */
    slug?: string | undefined;
};
export type RemoveProjectMemberResponseBody = {
    id: string;
};
/** @internal */
export type RemoveProjectMemberRequest$Outbound = {
    idOrName: string;
    uid: string;
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const RemoveProjectMemberRequest$outboundSchema: z.ZodType<RemoveProjectMemberRequest$Outbound, z.ZodTypeDef, RemoveProjectMemberRequest>;
export declare function removeProjectMemberRequestToJSON(removeProjectMemberRequest: RemoveProjectMemberRequest): string;
/** @internal */
export declare const RemoveProjectMemberResponseBody$inboundSchema: z.ZodType<RemoveProjectMemberResponseBody, z.ZodTypeDef, unknown>;
export declare function removeProjectMemberResponseBodyFromJSON(jsonString: string): SafeParseResult<RemoveProjectMemberResponseBody, SDKValidationError>;
//# sourceMappingURL=removeprojectmemberop.d.ts.map