import type { Kysely, KyselyPlugin } from "kysely";
import { Connection, type DbFunctions, type FieldSpec, type SchemaResponse } from "../Connection";
export declare class SqliteConnection extends Connection {
    constructor(kysely: Kysely<any>, fn?: Partial<DbFunctions>, plugins?: KyselyPlugin[]);
    getFieldSchema(spec: FieldSpec): SchemaResponse;
}
