import { RuntimeException } from "@byloth/core";
import type { AlertOptions } from "./types/alert/index.js";
export declare class AlertThrottledException<R, T extends AlertOptions<R>> extends RuntimeException {
    readonly alert: T;
    constructor(alert: T, message?: string, cause?: unknown, name?: string);
}
