import { Ref } from 'react';
export interface IconProps {
    title?: string;
    fill?: string;
    stroke?: string;
    ref?: Ref<SVGSVGElement>;
}
