import { IdentityProviderUserPermission, InternalApiInput, InternalApiResult } from "@kottster/common"; import { Action } from "../models/action.model"; /** * Create a role */ export declare class CreateRole extends Action { protected requiredPermissions: IdentityProviderUserPermission[]; execute({ role }: InternalApiInput<'createRole'>): Promise>; }