import type { SshRemoteCommandOpts } from '../ssh'; export interface DeviceSSHOpts extends SshRemoteCommandOpts { forceTTY?: boolean; service?: string; } export declare function getContainerIdForService(opts: SshRemoteCommandOpts & { service: string; deviceUuid?: string; }): Promise; export declare function performLocalDeviceSSH(opts: DeviceSSHOpts): Promise;