import { pair } from "./base.pair"; export declare namespace orderStatusEnum { enum Id { PENDING = "pending", ACTIVE = "active", CANCELLED = "cancelled", TIMEOUT = "timeout", IDLE = "idle", ERROR = "error" } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }