import React from 'react'; interface HistoryDropdownProps { showLabel?: boolean; } declare const HistoryDropdown: ({ showLabel }: HistoryDropdownProps) => React.JSX.Element; export default HistoryDropdown;