import { LabelEntity, OrganizationEntity, UserEntity } from '../../'; import { BoardColumn, BOARD_ENTITY } from '../board.entity'; import { BoardBaseDto } from './base.dto'; export declare class SubmitBoardDto extends BoardBaseDto { title: string; type: BOARD_ENTITY; columnLabels: LabelEntity[]; columns?: BoardColumn[]; } export declare class CreateBoardDto extends SubmitBoardDto { organization: OrganizationEntity; createdByUser?: UserEntity; }