import { VRFSubscription } from "./VRFSubscription"; import { VRFCoordinatorConfig } from '../../core/types'; export declare class VRFCoordinator { address: string; chainlinkTokenContractAddress: string; web3provider: any; projectChainId: string; constructor(); init(): Promise; createSubscription(options?: { pk?: string; }): Promise; getSubscription(subId: string): Promise; getConfig(): Promise; getTotalBalance(): Promise; }