import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; import { scalar } from "./base.scalar"; export declare namespace dayPartEnum { enum Id { MORNING = "morning", NOON = "noon", EVENING = "evening", NIGHT = "night", DAWN = "dawn" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; interface Service extends enumeration.Service { findByTime(createdAt: scalar.IsoDatetime, timezone?: scalar.Alpha): Id; } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }