import { JSX, ValidComponent } from 'solid-js'; type SsgoiTransitionProps = { children: JSX.Element; id: string; as?: T; class?: string; }; /** * @deprecated Set `data-ssgoi-transition` directly on the page boundary * element inside `` instead. */ export declare const SsgoiTransition: (props: SsgoiTransitionProps) => JSX.Element; export {};