import { SQLDialect, DatabasePlatform } from './sqlDialect.js'; /** * Resolves a {@link DatabasePlatform} string to its concrete {@link SQLDialect} instance. * * This is the single factory for dialect resolution — all consumers should * call this instead of maintaining their own switch/map. * * @param platform - The database platform key (e.g., 'sqlserver', 'postgresql') * @returns The concrete SQLDialect instance for the platform * @throws Error if the platform is not registered */ export declare function GetDialect(platform: DatabasePlatform | string): SQLDialect; //# sourceMappingURL=dialectFactory.d.ts.map