import { type ParsedParadoxComment } from './parseParadoxComment.js'; export interface LeadingParadoxComment { parsed: ParsedParadoxComment; start: number; end: number; } /*** * Parses a leading Paradox comment from a source file. */ export declare function getLeadingParadoxComment(source: string): LeadingParadoxComment | null;