import type { Schema, SchemaSimple, IQueryDelegate } from './interface.js'; import type { NormalizeNullable } from './types.js'; /** * Build the result parameter to denormalize from schema alone. * Tries to compute the entity ids from params. */ export default function buildQueryKey(delegate: IQueryDelegate): (schema: S, args: readonly any[]) => NormalizeNullable; export declare function canQuery(schema: Schema): schema is Pick; export declare function validateQueryKey(queryKey: unknown): boolean; //# sourceMappingURL=buildQueryKey.d.ts.map