import type { Ratelimit } from "@upstash/ratelimit";
export declare function limitIpAttempts({ ipAddress, limiter, }: {
    ipAddress: string;
    limiter: Ratelimit;
}): Promise<{
    success: boolean;
    remaining: number;
    limit: number;
    reset: number;
}>;
//# sourceMappingURL=rateLimit.d.ts.map