import { IManagedObject, IResultList } from '@c8y/client';
declare global {
    namespace CumulocityServiceRegistry {
        interface SpecificExtensionKeys {
            asm: IAdvancedSoftwareService;
        }
    }
}
export interface IAdvancedSoftwareService {
    isASMAvailable(): Promise<boolean>;
    list(filter: any): Promise<IResultList<IManagedObject>>;
}
//# sourceMappingURL=advanced-software-management.model.d.ts.map