import { Where, WhereClause } from '../../types'; import type { SelectQueryBuilder } from 'kysely'; export declare const applyWhere: (qb: SelectQueryBuilder, where?: Where | WhereClause) => SelectQueryBuilder;