import type { ImportExpression, VariableDeclarator } from 'oxc-parser'; import type { WalkState } from './walk.ts'; export declare function handleVariableDeclarator(node: VariableDeclarator, s: WalkState): void; export declare function handleImportExpression(node: ImportExpression, s: WalkState): void;