import { type ReactElement } from "react"; import type { GridStackWidget } from "./types"; export interface GridStackItemProps { id: string; options?: Partial; children?: React.ReactNode; } /** * Portal anchor for one grid item. Owns the React subtree; survives cross-grid DnD * because the component stays mounted and the portal re-points to the new container. */ export declare function GridStackItem({ id, options, children, }: GridStackItemProps): ReactElement | null; //# sourceMappingURL=gridstack-item.d.ts.map