import type { Node } from '../types.ts';
/**
 * Removes given word from given {@link Node} if it exists.
 *
 * @param node - {@link Node} to remove word from.
 * @param word - Word to be removed.
 * @returns true if the word was removed, false otherwise.
 */
export declare const remove: (node: Node, word: string) => boolean;
