import { FC, PropsWithChildren } from "react";
type ContainerFunc = () => HTMLElement;
type Container = HTMLElement | ContainerFunc;
interface IPortal {
    container?: Container;
}
export declare const Portal: FC<PropsWithChildren<IPortal>>;
export {};
//# sourceMappingURL=Portal.d.ts.map