export interface Props { activeIndex?: number; animationDuration?: number; animationEasingFunction?: string; animationType?: 'slide' | 'fadeout' | 'spritesheet' | AnimationType; autoHeight?: boolean; autoPlay?: boolean; autoPlayControls?: boolean; autoPlayDirection?: 'rtl' | 'ltr' | AutoplayDirection; autoPlayInterval?: number; autoPlayStrategy?: 'default' | 'all' | 'action' | 'none' | AutoPlayStrategy; autoWidth?: boolean; children?: any; controlsStrategy?: 'default' | 'responsive' | 'alternate' | string | ControlsStrategy; disableButtonsControls?: boolean; disableDotsControls?: boolean; disableSlideInfo?: boolean; infinite?: boolean; innerWidth?: number; items?: any[]; keyboardNavigation?: boolean; mouseTracking?: boolean; name?: string; paddingLeft?: number; paddingRight?: number; preservePosition?: boolean; responsive?: Responsive; renderKey?: number; ssrSilentMode?: boolean; swipeDelta?: number; swipeExtraPadding?: number; touchMoveDefaultEvents?: boolean; touchTracking?: boolean; onInitialized?: (e: EventObject) => void; onResizeEvent?: (e: Event, prevProps: RootElement, nextProps: RootElement) => boolean; onResized?: (e: EventObject) => void; onSlideChange?: (e: EventObject) => void; onSlideChanged?: (e: EventObject) => void; renderSlideInfo?: (e: SlideInfo) => any; renderDotsItem?: (e: DotsItem) => any; renderPrevButton?: ({ isDisabled }: { isDisabled: any; }) => any; renderNextButton?: ({ isDisabled }: { isDisabled: any; }) => any; renderPlayPauseButton?: ({ isPlaying }: { isPlaying: any; }) => any; } export interface State { activeIndex: number; animationDuration?: number; autoWidth: boolean; clones: any[]; canUseDom: boolean; infinite?: boolean; initialStageHeight: number; isAutoPlaying: boolean; isAutoPlayCanceledOnAction: boolean; isStageContentPartial: boolean; itemsCount: number; itemsInSlide: number; itemsOffset: number; animationIndex: number | null; animationPosition: number | null; animationProcessing: boolean; stageContentWidth: number; stageWidth: number; swipeLimitMin: number; swipeLimitMax: number; swipeAllowedPositionMax: number; swipeShiftValue: number; transition: string; transformationSet: ItemCoords[]; translate3d: number; } export declare type Style = { transition: string; transform?: string; }; export declare type Transition = { animationDuration?: number; animationEasingFunction?: string; }; export declare type Responsive = { [key: string]: { items: number; }; }; export declare type EventObject = { item: number; itemsInSlide: number; isPrevSlideDisabled: boolean; isNextSlideDisabled: boolean; slide: number; type: string; }; export declare type RootElement = { width?: number; height?: number; }; export declare type Transformations = { partial: boolean; content: number; coords: ItemCoords[] | unknown[]; }; export declare type ItemCoords = { width: number; position: number; }; export declare type SlideTo = { activeIndex: number; animationIndex?: number | null; animationPosition?: number | null; eventType?: EventType; }; export declare type SlideInfo = { item: number; itemsCount: number; }; export declare type DotsItem = { isActive: boolean; activeIndex: number; }; export declare enum EventType { ACTION = "action", INIT = "init", RESIZE = "resize", UPDATE = "update" } export declare enum AnimationType { FADEOUT = "fadeout", SLIDE = "slide", SPRITESHEET = "spritesheet" } export declare enum AutoPlayStrategy { DEFAULT = "default", ALL = "all", ACTION = "action", NONE = "none" } export declare enum ControlsStrategy { DEFAULT = "default", ALTERNATE = "alternate", RESPONSIVE = "responsive" } export declare enum AutoplayDirection { RTL = "rtl", LTR = "ltr" } export declare enum Classnames { ANIMATED = "animated animated-out fadeOut", SPRITESHEET = "animated animated-out spritesheet", ROOT = "alice-carousel", WRAPPER = "alice-carousel__wrapper", STAGE = "alice-carousel__stage", STAGE_ITEM = "alice-carousel__stage-item", DOTS = "alice-carousel__dots", DOTS_ITEM = "alice-carousel__dots-item", PLAY_BTN = "alice-carousel__play-btn", PLAY_BTN_ITEM = "alice-carousel__play-btn-item", PLAY_BTN_WRAPPER = "alice-carousel__play-btn-wrapper", SLIDE_INFO = "alice-carousel__slide-info", SLIDE_INFO_ITEM = "alice-carousel__slide-info-item", BUTTON_PREV = "alice-carousel__prev-btn", BUTTON_PREV_WRAPPER = "alice-carousel__prev-btn-wrapper", BUTTON_PREV_ITEM = "alice-carousel__prev-btn-item", BUTTON_NEXT = "alice-carousel__next-btn", BUTTON_NEXT_WRAPPER = "alice-carousel__next-btn-wrapper", BUTTON_NEXT_ITEM = "alice-carousel__next-btn-item" } export declare enum Modifiers { ACTIVE = "__active", INACTIVE = "__inactive", CLONED = "__cloned", CUSTOM = "__custom", PAUSE = "__pause", SEPARATOR = "__separator", SSR = "__ssr", TARGET = "__target" }