export type SocialPlatform = 'github' | 'twitter' | 'linkedin' | 'youtube'; export interface FooterSocialProps { platform?: SocialPlatform; href?: string; className?: string; } export declare function FooterSocial({ platform, href, className, }: FooterSocialProps): import("react/jsx-runtime").JSX.Element;