import { default as React, ReactNode } from 'react'; import { SsgoiConfig } from '@ssgoi/core/types'; import { HostAnimation } from '@ssgoi/core/internal'; interface SsgoiProps { config: SsgoiConfig; /** * Optional external host that owns playback across transitions. Pass one in * (typically from `SsgoiDebugProvider`) to drive play/pause/rate from * outside the tree. */ host?: HostAnimation; children: ReactNode; } export declare const Ssgoi: React.FC; export {};