import { FunctionalComponent } from "../../stencil-public-runtime";
export interface IconProps {
  size?: number | string;
  styles?: object;
  color?: string;
  rotate?: number;
  spin?: boolean;
  opacity?: number | string;
  svgData?: any;
}
export declare const Icons: FunctionalComponent<IconProps>;
