export interface AnchorPoint { kind: "point"; date: Date; suggestionText: string; } export interface AnchorRange { kind: "range"; start: Date; end: Date; suggestionText: string; } export type AnchorValue = AnchorPoint | AnchorRange; export declare function parseAnchor(normalizedInput: string, now: Date, timeZone: string): AnchorValue | null;