import { Option } from '../ButtonGroupField'; import { Props as GridItemProps } from '../GridItem'; import type { Sector } from 'grapesjs'; import { StyleManagerDataConfig } from '../../types'; export interface PropertyCompositeProps extends GridItemProps { property?: any; sector: Sector; styleManagerDataConfig?: StyleManagerDataConfig; corners?: boolean; hideLabel?: boolean; generic?: boolean; compact?: boolean; options?: Option[]; } export default function PropertyComposite({ className, property, sector, styleManagerDataConfig, corners, hideLabel, compact, generic, children, options }: PropertyCompositeProps): import("react/jsx-runtime").JSX.Element | null;