import type { AfterRoutesCreatedActions, AfterRoutesCreatedLifecycleContext } from '../../../types'; /** * Prepares chunked documents for semantic search, llms.txt, and Docs MCP. * Chunking runs when any of these is enabled: AI search, llms.txt, or Docs MCP. * embeddingsEnabled is true when AI search or Docs MCP is enabled (shared embedding index). * writeLlmstxtFiles is false in develop mode, where the same content is generated on request * instead (see plugins/search/llmstxt/create-llms-txt-generator.ts). */ export declare function prepareSemanticDocuments(actions: AfterRoutesCreatedActions, context: AfterRoutesCreatedLifecycleContext, { embeddingsEnabled, writeLlmstxtFiles, }: { embeddingsEnabled: boolean; writeLlmstxtFiles: boolean; }): Promise; //# sourceMappingURL=prepare-semantic-documents.d.ts.map