import { Command } from '@oclif/core';
import type { BalenaSDK } from 'balena-sdk';
export default class DeviceStopServiceCmd extends Command {
    static description: string;
    static examples: string[];
    static args: {
        uuid: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
        service: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
    };
    static authenticated: boolean;
    run(): Promise<void>;
    stopServices(balena: BalenaSDK, deviceFullUuid: string, serviceNames: string[]): Promise<void>;
}
