import React, { PureComponent } from 'react'; interface IProps { dpCodes: string[]; } interface IState { names: { [dpCode: string]: string; }; } export default class ScheduleList extends PureComponent { constructor(props: IProps); componentDidMount(): void; componentWillReceiveProps(nextProps: { dpCodes: string[]; }): void; get data(): { key: string; title: string; arrow: boolean; arrowUseIcon: boolean; onPress: () => void; }[]; formatNames: (props?: Readonly & Readonly<{ children?: React.ReactNode; }>) => Promise; render(): JSX.Element; } export {};