/*! * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import { ExtendedHTMLElement } from '../../helper/dom'; import { DropdownFactoryProps, DropdownListOption } from '../../static'; export interface DropdownWrapperProps { dropdownProps: DropdownFactoryProps; classNames?: string[]; } export declare class DropdownWrapper { private readonly props; private dropdown; render: ExtendedHTMLElement; constructor(props: DropdownWrapperProps); private readonly createDropdownComponent; readonly getSelectedItems: () => DropdownListOption[]; readonly setSelectedItems: (itemIds: string[]) => void; readonly destroy: () => void; }