import type { IMinimalId, IService } from '@user-credits/core'; export declare class ServiceProxy { protected service: IService; protected _envTags: string[]; constructor(service: IService, _envTags?: string[]); get envTags(): string[]; set envTags(value: string[]); tokensConsumed({ url }: { url: any; }): Promise; createOrder({ url }: { url: any; }): Promise; payOrder({ url }: { url: any; }): Promise; loadOffers({ url }: { url: any; }): Promise; loadUserCredits({ url }: { url: any; }): Promise; afterExecute({ url }: { url: any; }): Promise; }