import { IDefaultOwner } from "../../../controllers/config/models"; import { ResourceType } from "../enums/resource-type"; import { GraphQLService } from "../graphql.service"; import { IDeployContractRequestInput, INewGanacheInstanceInput } from "../models"; export declare class MockGraphQLService extends GraphQLService { getContractWatchesByAddresses(address: string | string[]): Promise; deployContractRequest(params: IDeployContractRequestInput, driveId: string, defaultOwner: IDefaultOwner): Promise; allDrives(): Promise; addForkedGanacheInstance(params: INewGanacheInstanceInput, driveId: string): Promise; addFolder(parentFolderId: string, name: string): Promise; addDraftResource(folderId: string, type: ResourceType): Promise; }