import type { HttpClient } from "../http-client.js"; import type { HassHistoryRow } from "../types/hass.js"; export type { HassHistoryRow }; export interface HistoryQuery { start: string | Date; end?: string | Date; entityIds: string[]; minimalResponse?: boolean; significantChangesOnly?: boolean; noAttributes?: boolean; } export declare class HistoryManager { private readonly http; constructor(http: HttpClient); getHistory(query: HistoryQuery): Promise; } //# sourceMappingURL=history-manager.d.ts.map