export declare const DisplayNames: { readonly root: { readonly elementDisplayName: "Slideshow"; readonly actions: { readonly manageItems: "Manage Slideshow"; }; readonly customActions: { readonly animatedIcon: "Customize Icon"; }; readonly data: { readonly content: "Box"; readonly autoplay: "Autoplay"; readonly loop: "Continuous loop"; readonly autoplayDelay: "Time on each slide (seconds)"; readonly pauseOnHover: "Pause on hover"; readonly transitionType: "Transitions"; readonly transitionDirection: "Transition direction"; readonly transitionDuration: "Transition duration (seconds)"; readonly slides: "Slide"; readonly activeSlide: "Active slide"; readonly showPauseButton: "Show pause & play button"; readonly nextButtonLabel: "Next navigation button text"; readonly prevButtonLabel: "Previous navigation button text"; }; readonly displayGroups: { readonly slides: "Slides"; readonly buttonsText: "Buttons text"; }; readonly cssCustomProperties: { readonly 'animation-duration': "Transition duration"; readonly orientation: "Orientation"; readonly 'icon-placement': "Icon placement"; readonly 'navigation-buttons-position': "Navigation button position"; readonly 'navigation-buttons-arrangement': "Navigation button arrangement"; readonly 'navigation-buttons-alignment': "Navigation button alignment"; readonly 'slide-indicators-position': "Slide indicator position"; readonly 'controls-padding': "Padding"; }; }; readonly transitionType: { readonly options: { readonly none: "None"; readonly slide: "Slide"; readonly crossFade: "Cross-fade"; readonly inOut: "In-and-out"; }; }; readonly transitionDirection: { readonly options: { readonly rtl: "Right-to-left"; readonly ltr: "Left-to-right"; readonly ttb: "Top-to-bottom"; readonly btt: "Bottom-to-top"; }; }; readonly orientation: { readonly options: { readonly horizontal: "Horizontal"; readonly vertical: "Vertical"; }; }; readonly iconPlacement: { readonly horizontal: { readonly nextToText: "Next to text"; readonly aboveText: "Above text"; readonly belowText: "Below text"; }; readonly vertical: { readonly verticallyStacked: "Vertically stacked"; readonly beforeText: "Before text"; readonly afterText: "After text"; }; }; readonly position: { readonly options: { readonly top: "Top"; readonly center: "Center"; readonly bottom: "Bottom"; readonly end: "End"; readonly middle: "Middle"; readonly start: "Start"; }; }; readonly arrangement: { readonly options: { readonly separated: "Separated"; readonly together: "Together"; }; }; readonly navigationButtons: { readonly elementDisplayName: "Navigation buttons"; readonly data: { readonly icon: "Icon"; }; }; readonly slideIndicators: { readonly elementDisplayName: "Slide indicators"; readonly data: { readonly indicatorMode: "Display slide indicators"; }; readonly cssCustomProperties: { readonly 'dot-width': "Width"; readonly 'dot-gap': "Space between slide indicators"; }; }; readonly indicatorMode: { readonly options: { readonly max5: "Max 5"; readonly all: "All"; }; }; }; export declare const slideshowDataDefaults: { readonly autoplay: true; readonly loop: true; readonly autoplayDelay: 0.5; readonly pauseOnHover: true; readonly transitionType: "cross-fade"; readonly transitionDirection: "rtl"; readonly activeSlide: 0; readonly transitionDuration: 0; readonly showPauseButton: true; readonly nextButtonLabel: "Next"; readonly prevButtonLabel: "Previous"; }; export declare const slideshowCssPropertiesDefaults: { readonly border: "none"; readonly borderRadius: "0"; readonly boxShadow: "none"; }; export declare const slideshowCssCustomPropertiesDefaults: { readonly 'animation-duration': "0.5s"; readonly orientation: "horizontal"; readonly 'icon-placement-horizontal': "next-to-text"; readonly 'icon-placement-vertical': "vertically-stacked"; readonly 'navigation-buttons-position': "center"; readonly 'navigation-buttons-arrangement': "separated"; readonly 'navigation-buttons-alignment': "center"; readonly 'slide-indicators-position': "end"; readonly 'controls-padding': "0px"; }; export declare const orientationFields: readonly ["orientation"]; export declare const navigationButtonsPositionFields: readonly ["navigation-buttons-position-together-horizontal", "navigation-buttons-position-together-vertical", "navigation-buttons-position-separated-horizontal", "navigation-buttons-position-separated-vertical"]; export declare const navigationButtonsArrangementFields: readonly ["navigation-buttons-arrangement"]; export declare const navigationButtonsAlignmentFields: readonly ["navigation-buttons-alignment"]; export declare const slideIndicatorsPositionFields: readonly ["slide-indicators-position-horizontal", "slide-indicators-position-vertical"]; export declare const iconPlacementFields: readonly ["icon-placement-horizontal", "icon-placement-vertical"]; export declare const AUTOPLAY_STATE: { readonly RUNNING: "running"; readonly CANCELLED: "cancelled"; readonly PAUSED: "paused"; }; export declare const MOVEMENT_DIRECTION: { readonly FORWARD: "forward"; readonly BACKWARD: "backward"; }; export declare const SLIDESHOW_SLIDE_LTR_DIRECTION_EXPERIMENT = "slideshowSlideLtrDirection";