import { IntegrationType, Language } from "./DeviceStore";
export declare class ExternalIntegrationsStore {
    GetSupportedExternalIntegrationsAsync(integration: IntegrationType, lang: Language): Promise<SupportedExternalIntegration[]>;
}
export declare class SupportedExternalIntegration {
    Id: string;
    Name: string;
    Description: string;
}
