import type { AdapterState, AdapterHealth, ObservationBatch } from "../../types/index.js"; import type { DocumentAdapter } from "./types.js"; export declare class DocumentAdapterImpl implements DocumentAdapter { readonly metadata: { name: string; version: string; kind: "document"; category: "integration"; description: string; }; private _state; private _config?; private _health; get state(): AdapterState; get health(): AdapterHealth; private setHealth; private transition; private documentsDirectory; private maxSnippetLength; private listFiles; private walk; private detectFormat; private readText; private snippet; private hash; discover(): Promise; configure(config: Record): Promise; validate(): Promise; enable(): Promise; disable(): Promise; healthCheck(): Promise; observe(): Promise; } export declare function createDocumentAdapter(): DocumentAdapterImpl;