import type IDriver from '../i-driver'; import type { ClientOptions } from '@grpc/grpc-js'; export declare class SqilteDriver implements IDriver { callOptionsFactory: any; private readonly options; constructor(options: ClientOptions); init(options: any): Promise; exec(service: any, method: string, params: unknown, options?: any): Promise; withConnection(service: any, fn: (args: { resource: any; client: any; }) => Promise | R): Promise; markFailed(resource: any, error: Error): void; close(): void; } export type SqliteCient = object;