import type { AstPath, Doc } from "prettier";
import * as prettier from "prettier";
type PrintFn = (path: AstPath) => Doc;
export default function printGenerically(path: AstPath, opts: prettier.ParserOptions, print: PrintFn): Doc;
export {};
