export declare type SVGElement = SVGSVGElement | SVGTextElement | SVGPathElement; export declare type DummyImageHook = { shape?: 'avatar' | 'image' | 'text'; width?: number; height?: number; bgColor?: string; fgColor?: string; placeholder?: string; fontFamily?: string; }; export declare const useDummyImage: ({ shape, width, height, bgColor, fgColor, placeholder, fontFamily }: DummyImageHook) => string;