import { AppService, UserApp } from '../types/index.js'; interface GetService { appCode: string; serviceCode: string; } interface GetFunction { appCode: string; serviceCode: string; functionCode: string; } export declare const useAppsInfo: (segmentApps: UserApp[]) => { getAppInfo: (appCode: string) => UserApp | undefined; getServiceInfo: ({ appCode, serviceCode }: GetService) => AppService | undefined; getServiceFunctions: ({ appCode, serviceCode }: GetService) => import("../types/index.js").ServiceFunction[]; getFunctionInfo: ({ appCode, serviceCode, functionCode }: GetFunction) => import("../types/index.js").ServiceFunction | undefined; }; export {};