import { SocialNetworks } from '../interfaces/IFooter';
export interface SocialMediaIconProps {
    type: SocialNetworks;
    href?: string;
    className?: string;
}
export declare function SocialMediaIcon({ type, href, className, }: SocialMediaIconProps): import("react/jsx-runtime").JSX.Element;
