export default Placeholder; type Placeholder = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** @see https://github.com/sveltejs/svelte/issues/3088 */ declare const Placeholder: import("svelte").Component<{ /** * Primary slot content. */ children?: Snippet<[]> | undefined; } & Record, {}, "">; type Props = { /** * Primary slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';