import React from 'react'; import { TextInputProps } from 'react-admin'; interface PlacesTimelineInputProps extends TextInputProps { source: string; useMainText?: boolean; mapType?: string; API_URL: string; API_SEARCH_FIELD?: string; API_MAP_TYPE?: string; } export declare function PlacesTimelineInput(props: PlacesTimelineInputProps): React.JSX.Element; export {};