import { OrgRepeater } from '../../models/index.js'; export interface ParsedOrgTimestamp { active: boolean; date: string; hasTime: boolean; repeater?: OrgRepeater; warning?: OrgRepeater; } export declare function isOrgTimestamp(raw: string): boolean; export declare function parseOrgTimestamp(raw: string): ParsedOrgTimestamp | null;