import { isly } from "isly"; import type { Month } from "./index"; export type Numeric = typeof Numeric.values[number]; export declare namespace Numeric { const values: readonly [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; const type: isly.Number<1 | 2 | 3 | 4 | 8 | 10 | 12 | 5 | 6 | 7 | 9 | 11>, is: (value: (1 | 2 | 3 | 4 | 8 | 10 | 12 | 5 | 6 | 7 | 9 | 11) | any) => value is 1 | 2 | 3 | 4 | 8 | 10 | 12 | 5 | 6 | 7 | 9 | 11, flawed: (value: (1 | 2 | 3 | 4 | 8 | 10 | 12 | 5 | 6 | 7 | 9 | 11) | any) => isly.Flaw | false; function parse(value: Month): Numeric; function parse(value: string): Numeric | undefined; }