import { Component } from 'react'; import { LightModeProps, LightModeState } from './index.type'; export default class LightModeList extends Component { static defaultProps: { dataSource: any[]; iconTintColor: string; }; constructor(props: LightModeProps); _handleToSet: (value: any) => void; renderItem: ({ item }: any) => JSX.Element; render(): JSX.Element; }