import type { SyncTypiaLlmAdapterModuleOptions, SyncTypiaLlmAdapterModuleResult } from './typia-llm-types.js'; /** * Writes or verifies the generated build-time `typia.llm` adapter module. The * returned TypeScript source still needs to be compiled by the consuming * project's Typia transformer before JSON artifacts can be read from it. * * @param options Generated module destination plus render options. * @returns Rendered source, method descriptors, and the checked/written file path. */ export declare function syncTypiaLlmAdapterModule({ check, generatedSourceFile, ...renderOptions }: SyncTypiaLlmAdapterModuleOptions): Promise;