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