import * as React from 'react';
export interface CardServiceProps {
  className?: string;
  style?: React.CSSProperties;
  couleur?: "primary" | "secondary" | "tertiary";
  /** Text content; defaults to "Nos boutiques partenaires". */
  text1?: string;
  /** Text content; defaults to "Trouver une boutique". */
  text2?: string;
  /** Swappable nested instance; defaults to the design's. */
  icon1?: React.ReactNode;
}
export declare const CardService: React.FC<CardServiceProps>;
export default CardService;
