import * as Knex from "knex"; import * as Bookshelf from "bookshelf"; export interface IBookshelf extends Bookshelf { model(modelName: string, props: any): any; } export declare const knexfile: any; export declare const knex: Knex; export declare const bookshelf: IBookshelf;