import { type CasinoChainId } from "@betswirl/sdk-core"; import { Address } from "viem"; export type ConfigContextValue = { affiliates: Address[]; filteredTokens?: Address[]; withExternalBankrollFreebets?: boolean; testMode: boolean; getAffiliateForChain: (chainId: CasinoChainId) => Address; }; export declare const useBettingConfig: () => ConfigContextValue; export type ConfigProviderProps = { children: React.ReactNode; affiliate?: Address; filteredTokens?: Address[]; withExternalBankrollFreebets?: boolean; testMode?: boolean; }; export declare const ConfigProvider: React.FC;