import { SocialTypes } from "../../../theme-api/types";
import { FunctionComponent, type FC } from 'react';
import './index.less';
export type SocialIconProps = {
    icon: SocialTypes;
    link: string;
};
export type PresetSocialIcon = {
    Icon: FunctionComponent;
    titleIntlId: string;
};
declare const SocialIcon: FC<SocialIconProps>;
export default SocialIcon;
