import { ChildrenProp } from "../core/types.js";
import { PortalProps } from "./portal.types.js";
import { FC } from "react";
//#region src/portal/portal.d.ts
/** Provided children are portaled to document.body or custom container. */
declare const Portal: FC<PortalProps & ChildrenProp>;
//#endregion
export { Portal, Portal as default };

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