import { SVGWrapperVariants } from './SVGWrapper.css';
import { Sprinkles } from '../../../theme';
import { ReactNode, SVGProps } from 'react';

export type SVGWrapperProps = SVGWrapperVariants & Omit<SVGProps<SVGSVGElement>, "ref"> & {
    children: ReactNode;
    color?: Sprinkles["color"];
};
export declare const SVGWrapper: import('react').ForwardRefExoticComponent<{
    readonly size?: "medium" | "fill" | "small" | "large" | undefined;
} & Omit<SVGProps<SVGSVGElement>, "ref"> & {
    children: ReactNode;
    color?: Sprinkles["color"];
} & import("react").RefAttributes<SVGSVGElement>>;
