import { SVGAttributes } from "react"; import "./Icon.css"; export declare const makePrefixer: (prefix: string) => (...names: string[]) => string; export interface IconProps extends SVGAttributes { /** * Multiplier for the base icon size. Should be a positive integer to conform to the rest of the design system. */ size?: number; } export declare const DEFAULT_ICON_SIZE = 1; export declare const Icon: import("react").ForwardRefExoticComponent>;