import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
export declare class Carousel implements OnInit, OnChanges {
    Datas: any[];
    ActiveIndex?: number;
    interval?: number;
    isFullwidth?: boolean;
    changable?: () => boolean;
    ActiveIndexChange: EventEmitter<any>;
    constructor();
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    nextSlide: () => void;
    prevSlide: () => void;
    setActiveslide: (index: number) => void;
    plusSlides: (slide: number) => void;
    private setInterval;
    isActive: (count: number) => boolean;
}
