import { ColumnOptions, GridStack } from 'gridstack'; import { EnginContext } from '@chamn/engine'; import { ResponsivePoint } from './type'; export type ReactGridLayoutPropsType = { children: any; onMount?: (grid: GridStack) => void; ctx: EnginContext; subWin?: Window; staticGrid?: boolean; animate?: boolean; layout?: ColumnOptions; $SET_DOM?: (dom: HTMLElement) => void; breakpoints?: ResponsivePoint[]; onBreakpointChange?: (breakpoint: { w: number; label: string; }) => void; }; export declare const GridLayout: ({ subWin, staticGrid, animate, onMount, $SET_DOM, ...props }: ReactGridLayoutPropsType) => import("react/jsx-runtime").JSX.Element;