import { MonkConverter } from './converters.js';
import { MonkConnection } from './MonkConnection.js';
export declare class MonkCursor {
    private connection;
    private converter;
    private result;
    private index;
    private rows;
    constructor(connection: MonkConnection, converter: MonkConverter);
    execute(sql: string, params?: any[]): Promise<void>;
    fetchone(): any[] | null;
    fetchmany(count?: number): any[][];
    fetchall(): any[][];
    private convertRows;
    get rowcount(): number;
    get description(): [string, null, null, null, null, null, null][] | null;
    close(): void;
}
//# sourceMappingURL=MonkCursor.d.ts.map