import { default as React } from 'react'; export interface ComplexGridProps extends React.HTMLAttributes { /** The data defining the names of the slots and their dropped content */ gridData?: { name: string; node: React.ReactNode; }[]; templateColumns?: string; templateRows?: string; templateAreas?: string; minHeight?: string; /** * @type|class * @schema [{ * "key": "Gap", * "prefix": "gap", * "type": "select", * "options": [ * {"key": "0", "label": "None (0px)"}, * {"key": "4", "label": "Small (16px)"}, * {"key": "6", "label": "Medium (24px)"}, * {"key": "8", "label": "Large (32px)"}, * {"key": "12", "label": "Extra Large (48px)"} * ] * }] */ className?: string; } export declare const ComplexGrid: React.FC; export default ComplexGrid;