import type { CommentSpecifier } from './CommentSpecifier.js'; interface ExtractedComments { text: string; comments: CommentSpecifier[] | undefined; hasFinalNewline: boolean; } export declare function extractComments(text: string): ExtractedComments; export {};