import type { SvelteHTMLElements } from 'svelte/elements';
type Props = Omit<SvelteHTMLElements['div'], 'class'> & {
    class?: ClassName;
    animate?: string;
};
declare const BagePlaceholder: import("svelte").Component<Props, {}, "">;
type BagePlaceholder = ReturnType<typeof BagePlaceholder>;
export default BagePlaceholder;
