import { type Node } from './types'; export declare function parse(input: object, shortcuts?: Shortcuts): Node; export declare function createNode(): Node; export type Shortcuts = Map;