import * as AST from './types/logic-ast'; import { SERIALIZATION_FORMAT } from './lona-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;