import { Temporal } from 'temporal-polyfill'; /** * A FEEL (e.g. `2020-04-06`). */ export declare class FeelDate { /** * @internal underlying temporal value */ readonly value: Temporal.PlainDate; /** * @internal canonical ISO-8601 form; drives both display and * structural comparison */ readonly iso: string; constructor(value: Temporal.PlainDate); get year(): number; get month(): number; get day(): number; get weekday(): number; /** * Return the underlying `Temporal.PlainDate`. * * Escape hatch for consumers that need the raw temporal value. The * returned type is implementation specific and may change. */ unwrap(): Temporal.PlainDate; toString(): string; toJSON(): string; } /** * A FEEL