import { Permission } from "./permission.data.model";
export declare class UserRole {
    /**
     * Unique id of the user role
     */
    id: string;
    /**
     * Name of the user role
     */
    name: string;
    /**
     * Description of the user role
     */
    description: string;
    /**
     * Permissions associated with the user role
     */
    permissions: Permission[];
}
