///
import { type PortalProps } from '../Portal';
export type RemoveScrollPortalOwnProps = {
/**
* @default true
*/
lockScroll?: boolean;
/**
* @default true
* @description Portal 컴포넌트 하위에 렌더시킬지 여부
*/
withinPortal?: boolean;
/**
* @description withinPortal props가 true일 때, Portal 컴포넌트에 전달합니다.
*/
portalProps?: PortalProps;
};
export type RemoveScrollPortalProps = React.PropsWithChildren;
export declare function RemoveScrollPortal({ children, lockScroll, withinPortal, portalProps, }: RemoveScrollPortalProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=RemoveScrollPortal.d.ts.map