import type { ColumnData } from '../Column.js'; import { type HasSql } from '../Internal.js'; import { type Sql } from '../Sql.js'; export type Input = HasSql | T; export declare function input(value: Input, maybeField?: Input): Sql; export declare function mapToColumn({ mapToDriverValue }: ColumnData, expr: Input): Sql;