import type { SDKConfig, TaskPayload } from './types/sdk'; /** * Look up the cached documentation URL base for a model. Returns null if the * model hasn't been resolved via `/resolve` yet (i.e., `validate: true` never * ran for it). Callers should append a `#request-{parameter}` anchor. */ export declare const getDocsUrlForModel: (model: string) => string | null; export declare const validateTasks: (tasks: TaskPayload[], config: SDKConfig) => Promise; /** * Clear the in-process validator cache. Useful when you know the server-side * schemas have changed and want subsequent validate calls to re-fetch fresh * schemas without restarting the process. */ export declare const clearValidatorCache: () => void; //# sourceMappingURL=validate.d.ts.map