import type { ImagePlaceholderProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ImagePlaceholderProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1544) * ## Props * @prop size = "md" * @prop rounded * @prop imgOnly = false * @prop class: className * @prop classes * @prop ...restProps */ declare const ImagePlaceholder: import("svelte").Component; type ImagePlaceholder = ReturnType; export default ImagePlaceholder;