import { _, __ } from "./$"; import { ApiQueryType } from "./api-query"; export type AppRegisteredBranchesStateQueryParams = Parameters[0]; export type AppRegisteredBranchesStateQueryErrorTypeName = never; export interface AppRegisteredBranchesStateQueryInvalidQueryData { errorTypeName: AppRegisteredBranchesStateQueryErrorTypeName; } export interface AppRegisteredBranchesStateQueryValidQueryData { errorTypeName: undefined; appRegisteredBranchesState: Awaited>; } export declare const APP_REGISTERED_BRANCHES_STATE_QUERY_TYPE: __.ImmutableBox>; export declare const getAppRegisteredBranchesStateQueryKey: (params: { appId: string; }) => Array, /** * */ useAppRegisteredBranchesStateQuery: import("./api-query").UseApiQuery<{ appId: string; }, AppRegisteredBranchesStateQueryInvalidQueryData, AppRegisteredBranchesStateQueryValidQueryData>, /** * */ useAppRegisteredBranchesStateQueries: (queriesParams: ({ appId: string; } | undefined)[]) => (import("./api-query").ApiQuery<{ appId: string; }, AppRegisteredBranchesStateQueryInvalidQueryData, AppRegisteredBranchesStateQueryValidQueryData> | undefined)[], /** * */ useAppRegisteredBranchesStateSuspenseQuery: (params: { appId: string; }) => import("./api-query").ApiSuspenseQuery<{ appId: string; }, AppRegisteredBranchesStateQueryInvalidQueryData, AppRegisteredBranchesStateQueryValidQueryData>, /** * */ useAppRegisteredBranchesStateSuspenseValidQuery: (params: { appId: string; }) => import("./api-query").ApiSuspenseValidQuery<{ appId: string; }, AppRegisteredBranchesStateQueryValidQueryData>; /** * */ export declare function useAppRegisteredBranchesState(params: AppRegisteredBranchesStateQueryParams): { [appRegisteredBranchUid: string]: _.AppBranchState; }; //# sourceMappingURL=use-app-registered-branches-state-query.d.ts.map