interface PaginationPropTypes {
    prefixCls?: string;
    className?: string;
    mode?: 'button' | 'number' | 'pointer';
    simple?: Boolean;
    style?: any;
    current: number;
    total: number;
    prevText?: string;
    nextText?: string;
    onPrev?: () => void;
    onNext?: () => void;
    onChange?: Function;
    indicatorStyle?: any;
    /** rn only **/
    styles?: any;
}
export default PaginationPropTypes;
