import { type EventEmitter } from '../../stencil-public-runtime'; export declare class CobaltDropdown { /** * Align the dropdown with the trigger element. */ alignment?: 'left' | 'center' | 'right'; /** * Change the width of the dropdown. */ width?: 'small' | 'medium' | 'large'; /** * aggragation of all the item selected. */ allSelectedItems: any[]; /** * Boolean indicating if the dropdown is open. */ open: boolean; /** * currentIndex for keyboard navigation */ currentIndex: number; trigger: HTMLElement; popover: HTMLElement; /** * Emitted when the selected values of the dropdown have changed. */ cobaltDropdownItemsChange: EventEmitter; element: HTMLElement; render(): any; }