import DataLoader from "dataloader"; import { Call, CallContractResponse } from "starknet"; import type { DataLoaderOptions, MinimalProviderInterface } from "../types"; export declare class ContractBatchProvider implements MinimalProviderInterface { readonly provider: MinimalProviderInterface; readonly address: string; readonly dataloader: DataLoader; constructor(provider: MinimalProviderInterface, address?: string, dataLoaderOptions?: DataLoaderOptions); callContract(call: Call): Promise; } //# sourceMappingURL=ContractBatchProvider.d.ts.map