import { Component } from 'react'; export default interface FlashServiceProps { prefixCls?: string; onEndClick?: Function; title?: string; data?: any; onItemClick?: Function; } export default class FlashService extends Component { static defaultProps: { prefixCls: string; data: { imgUrlArray: string[]; imgUrlArray2: string[]; }; }; render(): JSX.Element; }