import { ValueHandlerContext } from './handler-context'; import { ValueTypeData } from './type-data'; import { ValueTypeDataHandlerBase } from './type-data-handler-base'; export declare class CheckNegativableValueHandler extends ValueTypeDataHandlerBase { static notEnoughErrorCode: number; protected getValueTypeFieldValue(valueTypeItem: ValueTypeData): boolean[]; protected onHandle(ctx: ValueHandlerContext, negativable: [boolean]): Promise; }