import React from 'react'; interface TProps { globalDataSource?: any; config?: any; fetchQueryLocationDistribution?: Function; setLocPic?: Function; init: any; filter: any; } interface TState { timeType: String; date: String; emapId: String; genderType: String; } declare class LocationPicker extends React.Component { static propTypes: {}; static defaultProps: { globalDataSource: {}; fetchQueryLocationDistribution: () => void; setLocPic: () => void; config: {}; }; state: TState; componentDidMount(): void; componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; } export default LocationPicker;