type Result = {
    block: boolean;
    type?: "ratelimited" | "blocked";
    trigger?: "ip" | "user";
    ip?: string;
};
export declare function shouldBlockRequest(): Result;
export {};
