import { isly } from "isly"; import { Date } from "../Date"; export type Numeric = typeof Numeric.values[number]; export declare namespace Numeric { const values: readonly [1, 2, 3, 4, 5, 6, 7]; const type: isly.Number<1 | 2 | 3 | 4 | 5 | 6 | 7>, is: (value: (1 | 2 | 3 | 4 | 5 | 6 | 7) | any) => value is 1 | 2 | 3 | 4 | 5 | 6 | 7, flawed: (value: (1 | 2 | 3 | 4 | 5 | 6 | 7) | any) => isly.Flaw | false; function from(date: Date): Numeric; }