export declare const ADD_CONSTRAINT = "ADD_CONSTRAINT"; export declare const REMOVE_CONSTRAINT = "REMOVE_CONSTRAINT"; export declare const UPDATE_CONSTRAINT_VALUES = "UPDATE_CONSTRAINT_VALUES"; export declare const addConstraint: (constraint: any) => { type: string; constraint: any; }; export declare const removeConstraint: (index: number) => { type: string; index: number; }; export declare const updateConstraintValues: (index: number, values: any) => { type: string; index: number; values: any; }; //# sourceMappingURL=constraints.d.ts.map