import { isly } from "isly"; export type Precision = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export declare namespace Precision { const values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; const type: isly.Number, is: (value: Precision | any) => value is Precision, flawed: (value: Precision | any) => isly.Flaw | false; }