import * as React from "react";
import { type PortalConfigContextValue } from "./PortalConfigContext";
export interface Props {
    children: React.ReactNode;
    config: PortalConfigContextValue;
}
declare const PortalConfigProvider: (props: Props) => JSX.Element;
export default PortalConfigProvider;
