import { ReactNode, ElementType } from 'react'; type SsgoiTransitionProps = { children: ReactNode; id: string; as?: T; className?: string; }; /** * Marks a subtree as a Ssgoi page boundary. * * @deprecated Set `data-ssgoi-transition` directly on the page boundary * element inside `` instead. */ export declare const SsgoiTransition: ({ children, id, as, className, ...rest }: SsgoiTransitionProps) => import("react/jsx-runtime").JSX.Element; export {};