import type { Snippet } from "svelte"; import type { SsgoiConfig } from "@ssgoi/core/types"; import type { HostAnimation } from "@ssgoi/core/internal"; interface Props { config: SsgoiConfig; host?: HostAnimation; children: Snippet; } declare const Ssgoi: import("svelte").Component; type Ssgoi = ReturnType; export default Ssgoi;