import type { QueryClient } from '@tanstack/query-core'; import type { InvalidationPredicate, QueryInfo } from '@zenstackhq/client-helpers'; /** Strips a trailing slash from an endpoint URL. */ export declare function normalizeEndpoint(endpoint: string): string; export declare function invalidateQueriesMatchingPredicate(queryClient: QueryClient, predicate: InvalidationPredicate): Promise; export declare function getAllQueries(queryClient: QueryClient): readonly QueryInfo[];