import React, { ReactNode } from 'react'; declare const SelectedRoute: (props: any) => React.JSX.Element; export default SelectedRoute; interface Props { selected: any; onSelect: any; type: 'source' | 'destination'; trigger: ReactNode; sourceCityLabel?: string; destinationCityLabel?: string; searchCityPlaceholder?: string; noData?: string; } export declare const DialogBox: (props: Props) => React.JSX.Element;