import { JSX } from 'solid-js'; import { SsgoiConfig } from './types'; import { HostAnimation } from '@ssgoi/core/internal'; interface SsgoiProps { config: SsgoiConfig; host?: HostAnimation; children: JSX.Element; } export declare const Ssgoi: (props: SsgoiProps) => JSX.Element; export {};