import { BoardController } from './board_controller'; export class BoardArchParser { parse(arch: any, customViewId: any): { title: null; layout: null; colNumber: number; isEmpty: boolean; columns: { actions: never[]; }[]; customViewId: any; }; } export namespace boardView { export let type: string; export { BoardController as Controller }; export function props(genericProps: any, view: any): any; }