import * as React from 'react'; import { TagProps } from '..'; export interface SocialLinksProps extends React.HTMLAttributes { } declare const SocialLinks: ({ className, ...props }: SocialLinksProps) => import("react/jsx-runtime").JSX.Element; export interface SocialLinksBadgesProps extends React.HTMLAttributes { } declare const SocialLinksBadges: ({ className, ...props }: SocialLinksBadgesProps) => import("react/jsx-runtime").JSX.Element; export declare const Platform: { readonly x: "x"; readonly discord: "discord"; readonly lens: "lens"; readonly farcaster: "farcaster"; readonly calendly: "calendly"; readonly medium: "medium"; readonly github: "github"; }; export type PlatformType = (typeof Platform)[keyof typeof Platform]; export interface SocialLinksBadgeProps extends TagProps { platform: PlatformType; isVerified?: boolean; username: string; } declare const SocialLinksBadge: ({ className, platform, isVerified, username, ...props }: SocialLinksBadgeProps) => import("react/jsx-runtime").JSX.Element; export interface SocialLinksButtonProps extends React.HTMLAttributes { } declare const SocialLinksButton: ({ ...props }: SocialLinksButtonProps) => import("react/jsx-runtime").JSX.Element; export { SocialLinks, SocialLinksBadges, SocialLinksBadge, SocialLinksButton };