import type { SaveOperatorType } from "./save-operators-type";
interface ConstructorParams<T> {
    type: SaveOperatorType;
    values: Array<T>;
}
/**
 * Save Operator used in Save Operations.
 */
export declare class SaveOperator {
    /**
     * Operator type.
     */
    readonly type: SaveOperatorType;
    /**
     * Parameter values.
     */
    readonly values: Array<any>;
    constructor({ type, values }: ConstructorParams<any>);
}
export {};
