/** * This file was automatically generated by @cosmwasm/ts-codegen@1.10.0. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run the @cosmwasm/ts-codegen generate command to regenerate this file. */ import { CosmWasmClient, SigningCosmWasmClient } from '@cosmjs/cosmwasm-stargate'; import { IContractsContext } from './contractContextProviders'; import React from 'react'; export interface ContractsConfig { address: string | undefined; getCosmWasmClient: () => Promise; getSigningCosmWasmClient: () => Promise; } export declare const ContractsProvider: ({ children, contractsConfig, }: { children: React.ReactNode; contractsConfig: ContractsConfig; }) => React.JSX.Element; export declare const useContracts: () => IContractsContext;