import { IWidget, BaseDashboardOptions } from '@csnext/cs-core'; export interface IFlexGridContainerOptions { height?: string; maxHeight?: string; } export interface IFlexGridContainer { id: number; options?: IFlexGridContainerOptions; widgets: IWidget[]; } export declare class FlexGridOptions extends BaseDashboardOptions { direction?: 'row' | 'column'; containers?: IFlexGridContainerOptions[]; }