import type { CodeKeywordDefinition, ErrorObject } from "../../../types"; export type LimitKwd = "maximum" | "minimum"; export type ExclusiveLimitKwd = "exclusiveMaximum" | "exclusiveMinimum"; type Comparison = "<=" | ">=" | "<" | ">"; export type LimitNumberError = ErrorObject; declare const def: CodeKeywordDefinition; export default def;