import type { SvelteNodeListener } from '../../types-for-node'; | |
import type { IndentContext } from './commons'; | |
type NodeListener = SvelteNodeListener; | |
/** | |
* Creates AST event handlers for svelte nodes. | |
* | |
* @param context The rule context. | |
* @returns AST event handlers. | |
*/ | |
export declare function defineVisitor(context: IndentContext): NodeListener; | |
export {}; | |