/** Keyed fenced-block adapter for TOML without an AST round trip. */ import { type ManagedRegionState } from "./managed-region-adapter.js"; import { type RegionName } from "./marker-grammar.js"; export interface KeyedBlockReconciliation { readonly state: ManagedRegionState; readonly updated: string; readonly changed: boolean; readonly body: string | undefined; } export declare const reconcileKeyedBlock: (args: { readonly content: string; readonly region: RegionName; readonly owner: string; readonly rendered: string; }) => KeyedBlockReconciliation; export declare const managedKeyedBlockNames: (content: string) => ReadonlyArray; //# sourceMappingURL=keyed-block-adapter.d.ts.map