/** * @description ku4-carousel-slide */ export declare class Ku4CarouselSlide { /** * Name of slide. The value of this property can be used as the * value of the "slide" attribute of a ku4-carousel-control to * target this slide as the active slide for the target ku4-carousel-control */ readonly name: any; private active; private classList; /** * Move this slide in to view. * @param {string} direction - Direction to move. */ slideIn(direction: 'prev' | 'next'): Promise; /** * Move this slide out of view. * @param {string} direction - Direction to move. */ slideOut(direction: 'prev' | 'next'): Promise; /** * Set this slide to active. */ activate(): Promise; /** * Set this slide to inactive. */ deactivate(): Promise; render(): any; }