import Knex from "knex"; import { ReturnType } from "../../../utils/util-types"; declare const prefixTableNames: (prefix: string) => { employees: string; categories: string; customers: string; shippers: string; suppliers: string; orders: string; products: string; order_details: string; customer_customer_demos: string; customer_demographics: string; regions: string; territories: string; employees_territories: string; }; interface SetupOptions { shouldSetup?: (name: TableKeys) => boolean; } export declare type TableKeys = keyof ReturnType; export declare const northwindFixture: (knex: Knex, prefix?: string) => { tables: { employees: string; categories: string; customers: string; shippers: string; suppliers: string; orders: string; products: string; order_details: string; customer_customer_demos: string; customer_demographics: string; regions: string; territories: string; employees_territories: string; }; setup: (setupOptions?: SetupOptions | undefined) => Promise<{ teardown: () => Promise; }>; }; export {};