export declare enum CommentType { Legal = "legal", Block = "block", Single = "single", HTML = "html" } export type CommentParts = { commentStart: string; commentEnd: string; lineStart: string; lineEnd: string; }; export type CommentOptions = { type?: CommentType | `${CommentType}`; } & Partial; export declare function comment(text: string, options?: CommentOptions): string;