import React from 'react'; import { DummyImageHook } from '../Hooks/useDummyImage'; export interface DummyImageProps extends DummyImageHook { style?: React.CSSProperties; className?: string; alt?: string; } export declare const DummyImage: ({ shape, width, height, bgColor, fgColor, placeholder, fontFamily, style, className, alt }: DummyImageProps) => JSX.Element;