import React from 'react'; export interface ICardContactLink { card: CardContactProps; cardConfigs?: IContactLinkConfigs; } export interface IContactLinkConfigs { color?: string; fontClass?: string; hoverColor?: string; svgProps?: { fill?: string; maxWidth?: string; fillHover?: string; }; } export interface CardContactProps { url: string; title?: string; adress: string; icon?: JSX.Element; } export declare function CardContactLink({ card, cardConfigs }: ICardContactLink): React.JSX.Element;