import { type PropsWithChildren } from "react"; export interface ApiConfigContextValue { apiDomain: string; } export declare const ApiConfigContext: import("react").Context; interface ApiConfigProviderProps extends PropsWithChildren { apiDomain: string; } export declare const ApiConfigProvider: ({ children, apiDomain, }: ApiConfigProviderProps) => import("react/jsx-runtime").JSX.Element; export {};