export declare const CarouselAnimationType: {
    none: "none";
    slide: "slide";
    fade: "fade";
};
export type CarouselAnimationType = (typeof CarouselAnimationType)[keyof typeof CarouselAnimationType];
export declare const CarouselIndicatorsOrientation: {
    /**
     * @deprecated in version 19.1.0. Use `end` instead.
     */
    bottom: "bottom";
    /**
     * @deprecated in version 19.1.0. Use `start` instead.
     */
    top: "top";
    start: "start";
    end: "end";
};
export type CarouselIndicatorsOrientation = (typeof CarouselIndicatorsOrientation)[keyof typeof CarouselIndicatorsOrientation];
