import type { IconProps } from "@salt-ds/icons"; import { type ComponentType, type HTMLAttributes } from "react"; import type { ValueComponentProps } from "./types"; export interface ContactSecondaryInfoProps extends Omit, "color"> { icon?: ComponentType; text: string; ValueComponent?: ComponentType; } export declare const ContactSecondaryInfo: import("react").ForwardRefExoticComponent>;