import { AnchorHTMLAttributes, FC } from "react";
import { icons } from "../../lib/icons";
export type Icons = typeof icons;
export type SelectedIcon = Icons[keyof Icons];
export type SelectIconProps = {
    icon: SelectedIcon;
};
export interface SocialIconProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
    platform: keyof typeof icons;
    size?: string | number;
    fgColor?: string;
    bgColor?: string;
    inverse?: boolean;
}
export declare const SocialIcon: FC<SocialIconProps>;
