import { pair } from "./base.pair"; import { equalityEnum } from "./equalityEnum"; import { enumeration } from "./base.enumeration"; import { httpComponent } from "./httpComponent"; import { scalar } from "./base.scalar"; export declare namespace equalityGroupEnum { enum Id { EQUALITY = "equality", BOOLEAN = "boolean", EMPTY = "empty", RANGE = "range", IN = "in", ARRAY = "array", TEXT = "text", OBJECT = "object" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; interface Service extends enumeration.Service { getEquations(value: unknown, opt?: scalar.AnyObject, req?: httpComponent.Req): Array; } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; const Match: Record>; }