export interface RateLimiterStore { add: (hash: string, ttl: number) => number | Promise; clear: () => void | Promise; }