import { type ICatalogAttributeHierarchy, type ICatalogDateAttributeHierarchy } from "@gooddata/sdk-model"; /** * @internal */ export interface IAttributeHierarchyListItemProps { item: ICatalogAttributeHierarchy | ICatalogDateAttributeHierarchy; onClick: () => void; isSelected?: boolean; isDisabled?: boolean; onEdit: (attributeHierarchy: ICatalogAttributeHierarchy | ICatalogDateAttributeHierarchy) => void; } export declare function AttributeHierarchyListItem(props: IAttributeHierarchyListItemProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AttributeHierarchyListItem.d.ts.map