/** * @omnify/ts — Frontend QueryKeys Generator (issue #58) * * Generates a `{Entity}QueryKeys.ts` per schema with `options.service` or * `options.api`. Each file exports a `create{Entity}QueryKeys` factory for * TanStack Query cache key management. */ import type { SchemaDefinition, TypeScriptFile } from './types.js'; export declare function generateTsQueryKeys(schemas: Record): TypeScriptFile[];