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