import { Alert } from "../../sdk"; import { Cache } from "flat-cache"; import { GetAlerts } from "../../sdk"; export declare type GetAlert = (alertHash: string) => Promise; export declare const ONE_DAY_IN_MS = 86400000; export declare const LOOKBACK_PERIOD_DAYS = 90; export default function provideGetAlert(getAlerts: GetAlerts, cache: Cache): (alertHash: string) => Promise; export declare const getCacheKey: (alertHash: string) => string;