import { IDtoId } from "./i-dto-id"; import { UserDto } from "./user-dto"; export declare class RoleDto implements IDtoId { id?: number; name: string; users?: UserDto[]; static createEmpty(): RoleDto; static createWithId(id: number, role: RoleDto): RoleDto; constructor(role: RoleDto); }