import { SaveOperator } from "./base";
/**
 * Changes the value of the column ONLY IF it's greater than the value specified
 */
export declare const Min: (value: number) => SaveOperator;
