import type { Snippet } from "svelte"; interface Props { children: Snippet; fallback?: Snippet; } declare const ServerOnly: import("svelte").Component; type ServerOnly = ReturnType; export default ServerOnly;