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