import { FC } from "react"; export interface SocialButtonProps { label: string; href: string; icon: string; } export declare const SocialButton: FC;