import type { EditableNodeAttributes } from "../types"; import { type ResponsiveLength } from "../utils/responsivePresentation"; interface GridProps extends EditableNodeAttributes { columns?: 1 | 2 | 3 | 4; gap?: "none" | "sm" | "md" | "lg" | "xl"; gapValue?: string; responsiveGap?: ResponsiveLength; children?: React.ReactNode; className?: string; } export declare function Grid({ columns, gap, gapValue, responsiveGap, children, className, "data-node-id": dataNodeId, }: GridProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Grid.d.ts.map