import { Doc } from './types'; export type PrintOptions = { /** * The max character width of a line of JQL before attempting to break its contents into multiple lines. If `null` * then the query will not break. */ printWidth?: number | null; }; export declare const printDocToString: (doc: Doc, options?: PrintOptions) => string;