import React from 'react'; import { CssFillItem, useGSvgFill } from './GSvgFill'; export type GSvgIconProps = React.SVGAttributes & { fills?: string | CssFillItem | (string | CssFillItem)[]; component?: React.ElementType; traverseFillableProps?: (props: any, options: ReturnType) => any; inheritViewBox?: boolean; }; export declare const GSvgIcon: React.ForwardRefExoticComponent & { fills?: string | CssFillItem | (string | CssFillItem)[] | undefined; component?: React.ElementType | undefined; traverseFillableProps?: ((props: any, options: ReturnType) => any) | undefined; inheritViewBox?: boolean | undefined; } & React.RefAttributes>;