import { Node } from '../types';
export declare const isMongoId: (data: string) => string | null;
/**
 * Find node with field data value and return data if nothing is found
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 */
declare const findNode: (nodes: Node[], data: string) => string | null;
export default findNode;
