import * as AST from './ast/logicAst'; import { SERIALIZATION_FORMAT } from './format'; export declare function decodeLogic(contents: string, format?: SERIALIZATION_FORMAT, options?: { filePath?: string; offset?: number; }): AST.SyntaxNode; export declare function encodeLogic(ast: AST.SyntaxNode, format: SERIALIZATION_FORMAT): string; export declare function convertLogic(contents: string, targetFormat: SERIALIZATION_FORMAT, options?: { sourceFormat?: SERIALIZATION_FORMAT; filePath?: string; offset?: number; }): string;