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