import { Role } from '../Roles/Role'; import { RBAC_TYPE } from '../types/RBACTypes'; export declare class PermissionCreate { name: string; description: string; type?: RBAC_TYPE; roles?: Array; }