import type { Dialect } from "../dialect.js"; import type { DialectBehavior } from "./behavior.js"; export declare const BEHAVIORS: Record; /** Resolve a dialect string (the IR/Scope tag) to its behavior. Throws on an unregistered/absent * dialect — sqllens applies NO default; the consumer must supply a supported Dialect. */ export declare function resolveBehavior(name: string | undefined): DialectBehavior;