import type { IconProps } from "@salt-ds/icons"; import { type ComponentType, type HTMLAttributes } from "react"; import type { ValueComponentProps } from "./types"; export interface ContactMetadataItemProps extends HTMLAttributes { label?: string; value: string; icon?: ComponentType; ValueComponent?: ComponentType; } export declare const ContactMetadataItem: import("react").ForwardRefExoticComponent>;