import { CustomElementPropertyMetadata } from "../../../custom-element/interfaces"; import { NodePatchingData } from "../../../renderer/NodePatcher"; declare const ComboBox_base: { new (): { [x: string]: any; isSelectionContainer: boolean; attributeChangedCallback(attributeName: string, oldValue: string, newValue: string): void; updateSelection(event: CustomEvent): void; }; [x: string]: any; readonly properties: Record; readonly state: Record; }; export default class ComboBox extends ComboBox_base { static get properties(): Record; render(): NodePatchingData; renderHeader(): NodePatchingData; renderSelectTemplate(): NodePatchingData; renderSingleSelectionTemplate(selection: any): NodePatchingData; renderMultipleSelectionTemplate(selection: any): NodePatchingData; didMountCallback(): void; } export {}; //# sourceMappingURL=ComboBox.d.ts.map