import * as React from 'react';
export interface SocialProps {
  className?: string;
  style?: React.CSSProperties;
  property1?: "discord" | "facebook" | "messenger" | "instagram" | "linkedin" | "pinterest" | "snapchat" | "tiktok" | "twitch" | "whatsapp" | "youtube" | "x" | "threads" | "figma" | "google" | "clutch";
  color?: "color" | "no color";
}
export declare const Social: React.FC<SocialProps>;
export default Social;
