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