/** * Shared helpers for ingest commands. */ /** * Parse and validate a timestamp string. Returns the parsed integer timestamp, * or Date.now() if no raw value is provided. */ export declare function parseTimestamp(raw?: string): number;