import { PostgreSQL } from "./types";
interface DeletePatchesOpts {
    db: PostgreSQL;
    string_id: string;
    cb?: Function;
}
export declare function delete_patches(opts: DeletePatchesOpts): Promise<void>;
export {};
