import type { KyselyPlugin } from 'kysely'; export type ColumnKind = 'date' | 'bool' | 'json' | 'uuid'; export type CoercionMap = Record>; export interface CreateCoercionPluginOptions { map: CoercionMap; } export declare function createCoercionPlugin(options: CreateCoercionPluginOptions): KyselyPlugin;