/// import type { IReactSelectInputProps } from '../../../presentation'; interface IRefreshableReactSelectInputProps extends IReactSelectInputProps { onRefreshClicked: () => void; refreshButtonTooltipText: string; } /** * A react-select input with a refresh button on the right. * When refreshing, the select is disabled and the refresh icon spins */ export declare function RefreshableReactSelectInput(props: IRefreshableReactSelectInputProps): JSX.Element; export {};