import CloudBase from '../../cloudBase/client'; import { ExportGeneric } from '../../ExportModel'; export default class Client implements ExportGeneric { _base: CloudBase; constructor(_base: CloudBase); execute(method: string, params: { [key: string]: any; }): Promise<{ [key: string]: any; }>; }