import AbstractHandler from './AbstractHandler';
import { HandlerConfig, State } from '../types/types';
export default class NegativeValues extends AbstractHandler {
    private prev;
    constructor(state: State, config: HandlerConfig);
    doExecute(): any;
}
