import { RefObject } from "react";
//#region src/portal/portal.types.d.ts
type PortalProps = {
  /** Ref of a custom container that will be used instead of document.body. */
  containerRef?: RefObject<HTMLElement | null>;
  /** Content will be rendered as usual, without portaling. */
  disablePortal?: boolean;
};
//#endregion
export { PortalProps };

//# sourceMappingURL=portal.types.d.ts.map