import type { RefObject } from 'react'; export declare enum ColorType { Fill = 0, Stroke = 1, FillAndStroke = 2 } export declare function useIconWithTheme(svgRef: RefObject, iconSrc: string, color?: string, colorType?: ColorType): { logoSVG: string; };