import type { Property, Sector } from 'grapesjs'; import { SectorProps } from '.'; import { StyleManagerDataConfig } from '../../types'; export declare function isFull(property: Property): boolean; interface PropertyComponentProps { property: Property; sector: Sector; styleManagerDataConfig?: StyleManagerDataConfig; fieldProps?: Record; } export declare function PropertyComponent({ property, sector, styleManagerDataConfig, fieldProps }: PropertyComponentProps): import("react/jsx-runtime").JSX.Element; interface StyleSectorPropertiesProps { properties: Property[]; sector: Sector; styleManagerDataConfig?: StyleManagerDataConfig; } export declare function StyleSectorProperties({ properties, sector, styleManagerDataConfig }: StyleSectorPropertiesProps): import("react/jsx-runtime").JSX.Element; export default function SectorGeneric({ sector, styleManagerDataConfig }: SectorProps): import("react/jsx-runtime").JSX.Element; export {};