/// import type { Property } from 'grapesjs'; import { GridProps } from '../Grid'; export interface PropertyLabelProps extends Omit { property?: Property; label?: string; empty?: boolean; hasValue?: boolean; shallow?: boolean; skipClear?: boolean; row?: boolean; tooltip?: React.ReactNode; onClear?: () => void; afterLabel?: React.ReactNode; } export default function PropertyLabel({ label, property, hasValue, empty, onClear, children, shallow, row, tooltip, skipClear, afterLabel, className, ...rest }: PropertyLabelProps): import("react/jsx-runtime").JSX.Element | null;