1import { LayoutDOM, Plot } from "./models";
2import { SizingMode, Location } from "../core/enums";
3import { Matrix } from "../core/util/matrix";
4export interface GridPlotOpts {
5    toolbar_location?: Location | null;
6    merge_tools?: boolean;
7    sizing_mode?: SizingMode;
8    plot_width?: number;
9    plot_height?: number;
10}
11export declare function gridplot(children: (Plot | null)[][] | Matrix<Plot | null>, options?: GridPlotOpts): LayoutDOM;
12//# sourceMappingURL=gridplot.d.ts.map