import React from 'react'; export type CssFillItem = { fill: string; box?: { width: number; height: number; }; }; export declare const useGSvgFill: (inFills: string | CssFillItem | (string | CssFillItem)[]) => { defs: React.JSX.Element | null; fills: string[]; iRef: { current: number; }; };