import * as React from 'react';
export interface Component4Props {
  className?: string;
  style?: React.CSSProperties;
  variant?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10";
  hover?: boolean;
  /** Text content; defaults to "On va où ?, l'application qui sécurise vos\ntrajets du quotidien". */
  text1?: string;
  /** Text content; defaults to "par Baltee". */
  text2?: string;
  /** Text content; defaults to "Prix après subventions". */
  text3?: string;
  /** Text content; defaults to "11.99€". */
  text4?: string;
}
export declare const Component4: React.FC<Component4Props>;
export default Component4;
