import * as React from 'react';
export interface IndustryLeadersProps {
  className?: string;
  style?: React.CSSProperties;
  icon?: "no icon" | "icon right";
  /** Text content; defaults to "Label". */
  text1?: string;
  /** Swappable nested instance; defaults to the design's. */
  icon1?: React.ReactNode;
}
export declare const IndustryLeaders: React.FC<IndustryLeadersProps>;
export default IndustryLeaders;
