import React from "react"; import type { SvgProps } from "./types"; import type { ColorKey, CSS } from "../../theme"; export declare const ICON_SIZES: { s: string; m: string; l: string; xl: string; }; export interface IconProps { size?: number | keyof typeof ICON_SIZES; color?: ColorKey; background?: ColorKey; } type EnhancedIcon = React.FC>, "color" | "background"> & Omit & IconProps & { css?: CSS; }>; export declare const withSharedIconProps: (WrappedIcon: React.FC) => EnhancedIcon; export {}; //# sourceMappingURL=withSharedIconProps.d.ts.map