import { SvelteComponentTyped } from "svelte";
import type { HTMLAttributes } from 'svelte/elements';
declare const __propDef: {
    props: HTMLAttributes<HTMLDivElement> & {
        divClass?: string;
        size?: string | number;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type TextPlaceholderProps = typeof __propDef.props;
export type TextPlaceholderEvents = typeof __propDef.events;
export type TextPlaceholderSlots = typeof __propDef.slots;
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Props
 * @prop export let divClass: $$Props['divClass'] = 'space-y-2.5 animate-pulse';
 * @prop export let size: NonNullable<$$Props['size']> = 'sm';
 */
export default class TextPlaceholder extends SvelteComponentTyped<TextPlaceholderProps, TextPlaceholderEvents, TextPlaceholderSlots> {
}
export {};
