import { FC } from 'react'; import { FloatingPortalProps } from '@floating-ui/react'; export type SheetPortalProps = FloatingPortalProps; /** * SheetPortal * * A portal component responsible for rendering `Sheet` content * outside the normal DOM hierarchy and managing focus and scroll * behavior while the sheet is mounted. */ export declare const SheetPortal: FC;