import * as Knex from 'knex'; /** * Create a function with parameter `Transaction`. * `Transaction` is either passed on from `params.transacting`, or new transaction * is created using `knex.transaction`. */ declare const transacted: (knex: Knex, params?: { transacting?: Knex.Transaction | undefined; } | undefined) => (fn: (t: Knex.Transaction) => any) => any; export default transacted;