import { DBase, DBaseOptions, DThemeBase } from "./d-base"; export interface DLayoutBoardOptions extends DBaseOptions { } export interface DThemeLayoutBoard extends DThemeBase { } /** * A board for layouting elements. * Unlike {@link DLayoutVertical} and {@link DLayoutHorizontal}, * this class doesn't change the position and the size of children. * Unlike {@link DBase} and {@link DBoard}, this class doesn't have * the background, the border, and the outline. And its children are * interactive by default. */ export declare class DLayoutBoard> extends DBase { protected getType(): string; }