import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type V2PermissionsCreateRoleResponseData = {
    /**
     * The unique identifier assigned to the newly created role.
     *
     * @remarks
     * Use this ID to reference the role in permission assignments, key operations, and role management calls.
     * Always begins with 'role_' followed by a unique alphanumeric sequence.
     * Store this ID if you need to manage, modify, or assign this role in future operations.
     */
    roleId: string;
};
/** @internal */
export declare const V2PermissionsCreateRoleResponseData$inboundSchema: z.ZodType<V2PermissionsCreateRoleResponseData, z.ZodTypeDef, unknown>;
export declare function v2PermissionsCreateRoleResponseDataFromJSON(jsonString: string): SafeParseResult<V2PermissionsCreateRoleResponseData, SDKValidationError>;
//# sourceMappingURL=v2permissionscreateroleresponsedata.d.ts.map