cozoDbWorkerInstance: Remote<{
    executeBatchPutCommand: ((tableName: string, array: Partial<DbEntity>[], batchSize?: number, onProgress?: ((count: number) => void)) => Promise<{
        ok: boolean;
    }>);
    executeGetCommand: ((tableName: string, selectFields?: string[], conditions?: string[], conditionFields?: string[], options?: GetCommandOptions) => Promise<IDBResult | IDBResultError>);
    executePutCommand: ((tableName: string, array: Partial<DbEntity>[]) => Promise<IDBResult | IDBResultError>);
    executeRmCommand: ((tableName: string, keyValues: Partial<DbEntity>[]) => Promise<IDBResult | IDBResultError>);
    executeUpdateCommand: ((tableName: string, array: Partial<DbEntity>[]) => Promise<IDBResult | IDBResultError>);
    exportRelations: ((relations: string[]) => Promise<any>);
    importRelations: ((content: string) => Promise<any>);
    init: (() => Promise<void>);
    isInitialized: (() => Promise<boolean>);
    runCommand: ((command: string) => Promise<IDBResult | IDBResultError>);
}>