import { default as React, ComponentProps } from 'react'; import { BarProps } from '../handle-bar'; export interface PortalProps extends ComponentProps<"div"> { shouldCloseOnDrag?: boolean; shouldDetectSwipingOnContainer?: boolean; showHandlebar?: boolean; handleBarPosition?: BarProps["position"]; handleBarIndex?: number; fullHeightOnOpen?: boolean; disableCloseOnOverlay?: boolean; portalId?: string; } declare const Portal: React.ForwardRefExoticComponent & React.RefAttributes>; export default Portal;