import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface AttributeLabelProps extends HTMLAttributes { ref?: Ref; /** * Width of the label cell in horizontal orientation, in pixels. * Defaults to MIN_LABEL_WIDTH. Clamped to [MIN_LABEL_WIDTH, MAX_LABEL_WIDTH]. * Ignored in vertical orientation. */ width?: number; children?: ReactNode; } export declare const AttributeLabel: FC;