import React, { ReactNode } from 'react';
import { BasicComponent } from '../../utils/typings';
import { SwiperRef } from '../../packages/swiper/types';
export interface FocusEffect {
    name: 'focus';
    scale: number;
}
export interface SwiperProps extends BasicComponent {
    direction: 'horizontal' | 'vertical';
    indicator: ReactNode;
    loop: boolean;
    duration: number | string;
    autoPlay: boolean | number;
    defaultValue: number;
    touchable: boolean;
    effect: FocusEffect | undefined;
    slideSize?: number;
    onChange?: (index: number) => void;
}
export declare const Swiper: React.ForwardRefExoticComponent<Partial<SwiperProps> & React.RefAttributes<SwiperRef>>;
