import BaseCommand from '../../BaseCommand.mjs'; declare class RemoveDeviceCommand extends BaseCommand { static paths: string[][]; requiresSyncConnection: boolean; requireFavaLib: boolean; static usage: import("clipanion").Usage; deviceId: string | undefined; force: boolean | undefined; exec(): Promise<{ success: boolean; cancelled?: undefined; } | { success: boolean; cancelled: boolean; }>; } export default RemoveDeviceCommand;