import * as React from 'react'; export interface InternalSVGIconProps extends SVGIconProps { realHeight: number; realWidth: number; } export interface SVGIconProps extends React.SVGProps { color?: string; height?: number; scale?: number; shadow?: boolean; width?: number; } export declare const SVGIcon: ({ realWidth, realHeight, scale, width, height, shadow, children, fill, ...props }: InternalSVGIconProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=SVGIcon.d.ts.map