import { PluginProvidedUiItemDescriptor } from '../base'; import { PluginIconType } from '../common/icon'; /** * Presentation Dropdown Item - The general presentation dropdown extensible area item * * @remarks * This dropdown is located when clicking the three dots on the top left corner * of the presentation area. */ export interface PresentationDropdownInterface extends PluginProvidedUiItemDescriptor { } export interface PresentationDropdownOptionProps { id?: string; label: string; icon: PluginIconType; onClick: () => void; dataTest?: string; }