import { Doc, doc } from 'prettier';
type NestedStringArray = (string | NestedStringArray)[];
export declare function stringifyDoc(input: Doc | null | undefined, recursive?: boolean): NestedStringArray;
export declare function isDocCommand(inputDoc: Doc | undefined | null): inputDoc is doc.builders.DocCommand;
export {};
