import * as React from 'react';
export interface BTNProps {
  className?: string;
  style?: React.CSSProperties;
  taille?: "default" | "link" | "s" | "xs";
  priorit?: "primary" | "secondary" | "error";
  style2?: "full" | "full / hover" | "disabled" | "outline" | "outline / hover" | "outline + arrow / hover" | "outline + arrow" | "error" | "sharing";
  /** Text content; defaults to "Créer une cagnotte". */
  text1?: string;
}
export declare const BTN: React.FC<BTNProps>;
export default BTN;
