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<string>;
export declare function performLocalDeviceSSH(opts: DeviceSSHOpts): Promise<void>;
