import { ConfigService } from "@nestjs/config"; import { LogService } from "../../../common/services/LogService"; import { QueryService } from "../../../common/services/QueryService"; import { StateService } from "../../../common/services/StateService"; import { AccountDocument, AccountModel } from "../../../common/models/AccountSchema"; import { AssetsService } from "../../../discovery/services/AssetsService"; import { PayoutsService } from "../../services/PayoutsService"; import { SignerService } from "../../services/SignerService"; import { MathService } from "../../services/MathService"; import { PrepareBoosterPayouts, PrepareBoosterPayoutsCommandOptions } from "./PrepareBoosterPayouts"; export declare type PrepareBoost5PayoutsCommandOptions = PrepareBoosterPayoutsCommandOptions; export declare class PrepareBoost5Payouts extends PrepareBoosterPayouts { protected readonly configService: ConfigService; protected readonly stateService: StateService; protected readonly queryService: QueryService; protected readonly payoutsService: PayoutsService; protected readonly signerService: SignerService; protected readonly logService: LogService; protected readonly assetsService: AssetsService; protected readonly mathService: MathService; protected readonly model: AccountModel; constructor(configService: ConfigService, stateService: StateService, queryService: QueryService, payoutsService: PayoutsService, signerService: SignerService, logService: LogService, assetsService: AssetsService, mathService: MathService, model: AccountModel); protected get command(): string; protected get minReferred(): number; runAsScheduler(): Promise; }