import * as AST from '../../ast/logicAst'; export declare function parse(code: string, options?: {}): AST.SyntaxNode; export declare function print(node: AST.SyntaxNode, options?: { indent?: number; }): string;