import * as React from 'react';
export interface GraphicProps {
  className?: string;
  style?: React.CSSProperties;
  icon?: "design" | "screen" | "finance" | "people" | "home" | "diamond" | "phone" | "clock" | "map" | "mail" | "typography" | "mobile" | "drag" | "seo" | "speed" | "cart" | "custom" | "plan" | "strategy" | "optimize" | "world" | "grape" | "car";
}
export declare const Graphic: React.FC<GraphicProps>;
export default Graphic;
