import sql from "mssql";
import { ctDbStatus } from "./change-tracking-db-status";
declare type CtDbDisable = {
    pool: sql.ConnectionPool;
    dbName: string;
};
/** Disable change tracking in DB level */
export declare function ctDbDisable({ dbName, pool, }: CtDbDisable): ReturnType<typeof ctDbStatus>;
export declare function ctDbDisableQuery(dbName: string): string;
export {};
