import { Jast } from '../types'; import { PrintOptions } from './print-doc-to-string'; /** * Print the provided AST object into a formatted JQL string. */ export declare const print: (jast: Jast, options?: PrintOptions) => string;