import { isly } from "isly"; export type Standard = typeof Standard.values[number]; export declare namespace Standard { const values: readonly ["standard", "url", "ordered", "reversed"]; const type: isly.Type<"standard" | "url" | "ordered" | "reversed">; const is: (value: any | ("standard" | "url" | "ordered" | "reversed")) => value is "standard" | "url" | "ordered" | "reversed"; const flaw: (value: ("standard" | "url" | "ordered" | "reversed") | any) => isly.Flaw; }