import type { ReactNode } from "react"; /** * Minimal client-only portal into `document.body`. Replaces * `@radix-ui/react-portal` — Base UI ships no standalone portal primitive, and * the sheet renderer only ever runs on the client. Mounting is deferred to an * effect so server render and first client render agree (no hydration * mismatch). */ export declare const SheetPortal: ({ children }: { children: ReactNode; }) => ReactNode; //# sourceMappingURL=sheet-portal.d.ts.map