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