import type { Dialect } from "./dialect.js"; export declare const DERIVED_DIALECTS: Readonly>; /** * Resolve an engine / product name (or a dialect name) to the dialect that * parses its SQL. Case-insensitive. Returns undefined for anything not * genuinely served by a gated grammar — never guesses. */ export declare function resolveDialect(engineOrDialect: string): Dialect | undefined;