import { LabelEntity } from '../../labels'; import { BaseDto } from '../../base/base.dto'; import { BoardColumn, BOARD_ENTITY } from '../board.entity'; export declare class BoardBaseDto extends BaseDto { title?: string; description?: string; type?: BOARD_ENTITY; columnLabels?: LabelEntity[]; columns?: BoardColumn[]; }