import { OrganizationEntity, UserEntity } from '../../'; import { LabelBaseDto } from './base.dto'; export declare class SubmitLabelDto extends LabelBaseDto { title: string; color: string; } export declare class CreateLabelDto extends SubmitLabelDto { organization: OrganizationEntity; createdByUser?: UserEntity; }