import Sql from "./sql";
export = SQLite;
declare class SQLite extends Sql {
    constructor();
    getLimit(sql: string, limit: number, offset: number): string;
}
