import type { Doc } from "prettier"; import type { Path, Options, Comment } from "./types.js"; /** * Prints all dangling comments * * @param path the current path * @param options the formatting options * @returns the formatted comments */ export declare function printDanglingComments(path: Path, options: Options): Doc; /** * Prints a comment * * @param comment the comment to print * @param options the formatting options * @returns the formatted comment */ export declare function printComment(comment: Comment, options: Options): Doc; //# sourceMappingURL=comments.d.ts.map