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