import type { ExportNamedDeclaration, ExportDefaultDeclaration, TSExportAssignment, ExpressionStatement } from 'oxc-parser'; import type { WalkState } from './walk.ts'; export declare function handleExportNamed(node: ExportNamedDeclaration, s: WalkState): void; export declare function handleExportDefault(node: ExportDefaultDeclaration, s: WalkState): void; export declare function handleExportAssignment(node: TSExportAssignment, s: WalkState): void; export declare function handleExpressionStatement(node: ExpressionStatement, s: WalkState): void;