import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
export interface AttributeEmptyDescriptionProps extends HTMLAttributes {
ref?: Ref;
children?: ReactNode;
}
/**
* Description shown only while the surrounding `Attribute` is in the
* `isEmpty` state. Renders `null` otherwise. Internally a thin conditional
* wrapper around `AttributeLabelDescription` — same layout, same styling,
* just gated by `isEmpty`.
*
* Typically placed inside ``; works anywhere inside an
* `` since the visibility comes from context.
*
* ```tsx
*
*
* Owner
* Not yet assigned
*
*
*
* ```
*/
export declare const AttributeEmptyDescription: FC;