export declare type CarouselTypes = Variant & { delay?: number; children: any; rightIcon: any; leftIcon: any; transition?: string; auto?: boolean; }; declare type Variant = { indicatorType?: 'arrow'; indicatorPosition?: undefined; activeColor?: undefined; color?: undefined; } | { indicatorType: 'buttons'; indicatorPosition?: string; activeColor: string; color: string; }; export interface TranslateRateType { translateRate: number; } export interface AllginmentType { allginment?: string; } export interface CurrentIndicatorType { currentIndicator: boolean; } export declare type ColorType = { activeColor?: string; color: string; }; export interface MovementType { movement?: string; } export {};