import { type FC, type HTMLAttributes, type ReactNode, type Ref } from 'react'; export interface AttributeValueProps extends HTMLAttributes { ref?: Ref; children?: ReactNode; } export declare const AttributeValue: FC;