import { APIEnvironment } from "@coin-voyage/shared/api";
import { PropsWithChildren } from "react";
export type ApiProviderProps = {
    apiKey: string;
    environment?: APIEnvironment;
    sessionId?: string;
    version?: string;
};
export declare function ApiProvider({ apiKey, environment, children }: PropsWithChildren<ApiProviderProps>): import("react/jsx-runtime").JSX.Element;
