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