import { BaseError } from "./BaseError";
/**
 * Indicates that certain threshold was exceeded.
 *
 * For example organization has too many users or indicating rate limiting errors.
 */
export declare class LimitExceededError<T> extends BaseError {
    readonly payload?: T | undefined;
    constructor(message: string, payload?: T | undefined);
}
