/**
 * Custom error that ESLCarousel throws when navigation is rejected due to ongoing animation.
 * By default, it does not include a stack trace to avoid cluttering the console.
 */
export declare class ESLCarouselNavRejection extends Error {
    /** Debug mode to enable stack trace in the error log */
    static debug: boolean;
    constructor(index: number | string);
}
