import * as React from 'react';
export interface Component3Props {
  className?: string;
  style?: React.CSSProperties;
  variant?: "2" | "6" | "1" | "3" | "4" | "5" | "7" | "8" | "9" | "10" | "11";
  hover?: boolean;
  /** Text content; defaults to "Jean II électrique par Jean Fourche". */
  text1?: string;
  /** Text content; defaults to "électrique par Jean\nFourche". */
  text2?: string;
  /** Swappable nested instance; defaults to the design's. */
  icon1?: React.ReactNode;
}
export declare const Component3: React.FC<Component3Props>;
export default Component3;
