import { Scope } from "../../common/models/Scope"; import { BaseCommand, BaseCommandOptions } from "../../worker/BaseCommand"; export interface PayoutCommandOptions extends BaseCommandOptions { dryRun: boolean; } export declare abstract class PayoutCommand extends BaseCommand { protected scope: Scope; abstract execute(options?: PayoutCommandOptions): Promise; protected abstract get command(): string; protected abstract get signature(): string; protected runWithOptions(options: PayoutCommandOptions): Promise; }