export type SocialVariant = 'twitter' | 'github' | 'discord'; export interface SocialProps { href: string; variant: SocialVariant; } export declare function Social(props: SocialProps): import("react/jsx-runtime").JSX.Element;