import type { MittwaldAPIV2 } from "@mittwald/api-client"; type AppSystemSoftware = MittwaldAPIV2.Components.Schemas.AppSystemSoftware; type AppSystemSoftwareVersion = MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion; type AppAppVersion = MittwaldAPIV2.Components.Schemas.AppAppVersion; type AppApp = MittwaldAPIV2.Components.Schemas.AppApp; type AppAppInstallation = MittwaldAPIV2.Components.Schemas.AppAppInstallation; export declare function useApp(appId: string): AppApp; export declare function useAppInstallation(appInstallationId: string): AppAppInstallation; export declare function useAppVersion(appId: string, appVersionId: string): AppAppVersion; export declare function useSystemSoftware(systemSoftwareId: string): AppSystemSoftware; export declare function useSystemSoftwareVersion(systemSoftwareId: string, systemSoftwareVersionId: string): AppSystemSoftwareVersion; export {};