import { SemanticTree } from "./types"; declare type LeafValidation = (parents: SemanticTree[], children: SemanticTree) => string | undefined; /** * @deprecated not implemented * @param tree * @param _rule */ export declare const validate: (tree: SemanticTree, _rule: LeafValidation) => SemanticTree; export {};