import type { DtifFlattenedToken, RuleDefinition, ComponentDefinition, DeprecationEntry, PluginManifest, EntropyScore, TransportClient } from '../types.js'; /** * KernelWriteAPI sends write operations to the kernel process over the transport. * All mutations are applied by the kernel and broadcast as KernelEvents to * all connected clients. */ export declare class KernelWriteAPI { #private; constructor(transport: TransportClient); addToken(pointer: string, token: DtifFlattenedToken): Promise; deprecateToken(pointer: string, replacement?: string): Promise; removeToken(pointer: string): Promise; configureRule(ruleId: string, partial: Partial): Promise; registerComponent(name: string, definition: ComponentDefinition): Promise; loadPlugin(manifest: PluginManifest): Promise; recordDeprecationEntry(entry: DeprecationEntry): Promise; updateEntropy(score: EntropyScore): Promise; exportSnapshot(path: string): Promise; } //# sourceMappingURL=index.d.ts.map