import { Suspense } from "react"; import * as react_jsx_runtime0 from "react/jsx-runtime"; //#region src/context.d.ts interface BoundaryTrackerProps extends React.ComponentProps { boundaryId: string; boundary: React.ComponentType; } /** * Internal component that replaces boundary components via SWC plugin transformation. * Provides tracking context while maintaining all original boundary functionality. */ declare const BoundaryTrackerSWC: ({ boundaryId, boundary: Boundary, ...boundaryProps }: BoundaryTrackerProps) => react_jsx_runtime0.JSX.Element; //#endregion export { BoundaryTrackerSWC };