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