import { type AstPath, type Doc, doc, type Options } from "prettier";
import { type Node } from "../parser";
export declare function getFormattedBody(tag: AstPath<Node.Tag>, parser: Options["parser"] | false, toDoc: (text: string, options: Options) => Promise<Doc>, print: (selector: AstPath) => Doc, opts: Options): Promise<doc.builders.Doc>;
