import { SerializedNode } from './types';
import Node from './Node';
export declare const nodeToJsonFormatter: (node: Node) => SerializedNode;
export declare const widthsByHeight: (node: Node) => number[];
export declare const flattenByHeight: (node: Node, fn?: Function) => any[][];
