import { type LocationReminder, type LocationTrigger, type Reminder } from '@doist/todoist-sdk';
import type { ReminderDue } from '../../lib/api/reminders.js';
export type ReminderTypeFilter = 'time' | 'location';
interface ReminderLike {
    type: Reminder['type'];
    minuteOffset?: number;
    due?: {
        date: string;
    };
}
export declare function formatReminderTime(reminder: ReminderLike): string;
export declare function formatLocationReminderRow(reminder: LocationReminder): string;
export declare function parseDateTime(value: string): ReminderDue;
export declare function parseTrigger(value: string): LocationTrigger;
export declare function parseLat(value: string): string;
export declare function parseLong(value: string): string;
export declare function parseRadius(value: string): number;
export {};
//# sourceMappingURL=helpers.d.ts.map