import React from "react"; import { PartialColorProps } from "../theme"; export type SVGPathProps = React.SVGAttributes; export declare const SVGFillPath: ({ ...props }: SVGPathProps) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const SVGStrokePath: ({ ...props }: SVGPathProps) => import("@emotion/react/jsx-runtime").JSX.Element; export type SVGCircleProps = React.SVGAttributes; export declare const SVGFillCircle: ({ ...props }: SVGCircleProps) => import("@emotion/react/jsx-runtime").JSX.Element; export type SVGRectProps = React.SVGAttributes; export declare const SVGFillRect: ({ ...props }: SVGRectProps) => import("@emotion/react/jsx-runtime").JSX.Element; export interface SVGIconRootProps extends Omit, "color">, PartialColorProps { /** * @default "none" */ fill?: string; } export declare const SVGIconRoot: React.ForwardRefExoticComponent>;