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