import { CreateStreakEventDto } from "../models/CreateStreakEvent.dto"; import { StreakConfig } from "../models/StreakConfig"; import { StreakEvent } from "../models/StreakEvent"; export declare function getAllEventsForProject(projectId: string, apiKey: string, baseUrl: string): Promise; export declare function addEvent(event: CreateStreakEventDto, apiKey: string, baseUrl: string): Promise; export declare function getStreak(projectId: string, apiKey: string, baseUrl: string, config: StreakConfig, streakId?: string): Promise; export declare function getTimeUntilDueMs(projectId: string, apiKey: string, baseUrl: string, config: StreakConfig, streakId?: string): Promise; export declare function getHistoryForStreak(projectId: string, apiKey: string, baseUrl: string, streakId?: string): Promise;