import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        divClass?: string;
        size?: string | number;
        class?: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type CardPlaceholderProps = typeof __propDef.props;
export type CardPlaceholderEvents = typeof __propDef.events;
export type CardPlaceholderSlots = typeof __propDef.slots;
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Props
 * @prop export let divClass: $$Props['divClass'] = 'p-4 rounded-sm border border-gray-200 shadow-sm animate-pulse md:p-6 dark:border-gray-700';
 * @prop export let size: NonNullable<$$Props['size']> = 'sm';
 */
export default class CardPlaceholder extends SvelteComponentTyped<CardPlaceholderProps, CardPlaceholderEvents, CardPlaceholderSlots> {
}
export {};
