import type { IntlShape } from 'react-intl';
import type { Command, DropdownOptionT } from '../types';
import type { OptionConfig } from './types';
export declare const getDropdownOption: (intl: IntlShape, dispatchCommand: (command: Command) => void, { disabled, onClick, selected, appearance, testId, tooltip, description }: OptionConfig) => DropdownOptionT<Function>;
