import * as React from "react";
import { QueryClientConfig } from "../state";
type ViewProviderProps = {
    children: React.ReactNode;
    queryClientConfig?: QueryClientConfig;
    /** A custom document where views themes should be mounted. Useful when mounting views in an iframe. */
    themeContainerDocument?: Document;
};
export declare const ViewProvider: ({ children, queryClientConfig, }: ViewProviderProps) => import("react/jsx-runtime").JSX.Element;
export {};
