import { Optional } from '@ephox/katamari'; import type { SugarElement } from '../api/node/SugarElement'; export interface NodeValue { readonly get: (element: SugarElement) => string; readonly getOption: (element: SugarElement) => Optional; readonly set: (element: SugarElement, value: string) => void; } export declare const NodeValue: (is: (e: SugarElement) => boolean, name: string) => NodeValue; //# sourceMappingURL=NodeValue.d.ts.map