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