import type { QueryOptions } from "./types.js"; export interface ParsedQuery { where: string; orderBy: string; limit: number; offset: number; params: unknown[]; } export declare function buildQuery(tableName: string, options: QueryOptions, extraConditions?: string[]): { sql: string; countSql: string; params: unknown[]; limit: number; offset: number; page: number; }; export declare function parseQueryString(query: Record): QueryOptions;