import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        divClass?: string;
        imgHeight?: string;
        imgOnly?: boolean;
        class?: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ImagePlaceholderProps = typeof __propDef.props;
export type ImagePlaceholderEvents = typeof __propDef.events;
export type ImagePlaceholderSlots = typeof __propDef.slots;
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Props
 * @prop export let divClass: $$Props['divClass'] = 'space-y-8 animate-pulse md:space-y-0 md:space-x-8 rtl:space-x-reverse md:flex md:items-center';
 * @prop export let imgHeight: $$Props['imgHeight'] = '48';
 * @prop export let imgOnly: $$Props['imgOnly'] = false;
 */
export default class ImagePlaceholder extends SvelteComponentTyped<ImagePlaceholderProps, ImagePlaceholderEvents, ImagePlaceholderSlots> {
}
export {};
