import * as React from 'react';
export interface PushProps {
  className?: string;
  style?: React.CSSProperties;
  property1?: "push-01" | "push-02" | "push-03" | "push-04" | "push-05" | "push-06" | "push-07" | "push-08" | "push-09";
  /** Text content; defaults to "On en discute ?". */
  text1?: string;
  /** Text content; defaults to "Venez on en discute et vous allez voir, c’est cool !". */
  text2?: string;
}
export declare const Push: React.FC<PushProps>;
export default Push;
