export { useWallet } from "./useWallet";
import React, { PropsWithChildren } from "react";
import { AppInfo, GatewayConfig } from "arconnect";
import { AOSyncSDKContext } from "./types";
export declare const AOSyncContext: React.Context<AOSyncSDKContext | undefined>;
interface Props extends PropsWithChildren {
    gatewayConfig: GatewayConfig;
    muUrl: string;
    appInfo?: AppInfo;
}
export declare function AOSyncProvider({ gatewayConfig, muUrl, children, appInfo, }: Props): React.JSX.Element;
