import { type ICatalogAttribute } from "@gooddata/sdk-model"; import { type IKdaItemGroup } from "../internalTypes.js"; export interface IKdaAttributesDropdownProps { buttonLabel: string; attributesCount: number; validAttributes: ICatalogAttribute[]; initialAttributes: ICatalogAttribute[]; mapAttributes: Map; isSearchBarVisible: boolean; onApply: (selected: ICatalogAttribute[]) => void; onOpen: () => void; onClose: () => void; } export declare function KdaAttributesDropdown({ buttonLabel, attributesCount, validAttributes, initialAttributes, mapAttributes, isSearchBarVisible, onApply, onOpen, onClose }: IKdaAttributesDropdownProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=KdaAttributesDropdown.d.ts.map