import type { MarkupCandidate, TagKind } from "./types.js"; import type { AST } from "svelte/compiler"; interface ClassifiedCandidate { candidate: MarkupCandidate; kind: TagKind; attribute_name_replacement: AttributeNameReplacement | undefined; } interface AttributeNameReplacement { start: number; end: number; text: string; } export declare function classify_candidates(ast: AST.Root, candidates: MarkupCandidate[]): ClassifiedCandidate[]; export {};