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