import { Board } from './board.js'; import { BoardHistory } from './board-history.js'; export declare class NewBoard { name: string; description?: string; model: string; type?: 'main' | 'sub' | 'popup'; groupId?: string; thumbnail?: string; } export declare class BoardPatch { name?: string; description?: string; type?: 'main' | 'sub' | 'popup'; model?: string; groupId?: string; thumbnail?: string; } export declare class BoardList { items: Board[]; total: number; } export declare class BoardHistoryList { items: BoardHistory[]; total: number; }