import { ISupportedDevicesService, SupportedDevice } from "./ISupportedDevicesService";
export declare class SupportedDevicesService implements ISupportedDevicesService {
    static readonly ServiceName: string;
    GetServiceName(): string;
    GetSupportedDevicesAsync(): Promise<SupportedDevice[]>;
}
