import * as React from 'react';
export interface SocialButtonProps {
  className?: string;
  style?: React.CSSProperties;
  social?: "google" | "facebook" | "apple" | "twitter" | "figma" | "dribbble";
  supportingText?: boolean;
  state?: "default" | "hover" | "focused";
  theme?: "brand" | "gray" | "color";
  /** Text content; defaults to "Sign in with Facebook". */
  text1?: string;
  /** Swappable nested instance; defaults to the design's. */
  icon1?: React.ReactNode;
}
export declare const SocialButton: React.FC<SocialButtonProps>;
export default SocialButton;
