import React from 'react'; declare type ItemType = { key: string; item: React.ReactNode; }; export interface SlideListProps { parentPrefixCls: string; items: ItemType[]; currentIndex: number; } export declare const SlideList: React.ForwardRefExoticComponent>; export {};