import { type SourceSpan } from "../../parse/parser.js"; type DiagnosticCode = "AS006" | "AS007"; export type Diagnostic = { code: DiagnosticCode; severity: "warning"; message: string; filename: string; line: number; column: number; span: SourceSpan; }; export declare function AS006_007(source: string, options?: { filename?: string; }): Diagnostic[]; export {};