import { ReactNode } from "react";
interface ImagePlaceholderProps {
    prefix: string;
    children?: ReactNode;
}
export default function ImagePlaceholder(props: ImagePlaceholderProps): JSX.Element;
export {};
