/** * Ollama Cloud settings page scraper. * * Fetches the Ollama Cloud settings page and parses the HTML for session * and weekly usage percentages, plan tier, and reset times from the * `data-usage-track` aria-labels, `usage-meter__fill` style attributes, * and `.local-time` data-time attributes. */ import type { OllamaCloudResult } from "./types.js"; declare function extractUsagePercentFromTrack(trackHtml: string): number | null; declare function extractResetTimes(html: string): string[]; declare function extractPlanTier(html: string): string | null; export declare function queryOllamaCloudQuota(cookie: string, options?: { requestTimeoutMs?: number; }): Promise; export { extractUsagePercentFromTrack as _extractUsagePercentFromTrack, extractResetTimes as _extractResetTimes, extractPlanTier as _extractPlanTier }; //# sourceMappingURL=ollama-cloud.d.ts.map