import { type ICatalogAttributeHierarchy, type ObjRef } from "@gooddata/sdk-model"; /** * @internal */ export interface IAttributeHierarchyDialogProps { initialAttributeRef?: ObjRef; editingAttributeHierarchy?: ICatalogAttributeHierarchy; onClose?: () => void; onSaveOrUpdateSuccess?: (attributeHierarchy: ICatalogAttributeHierarchy) => void; onDeleteSuccess?: () => void; onAddAttributeClicked?: () => void; onCreateHierarchyClicked?: () => void; } /** * @internal */ export declare function AttributeHierarchyDialog({ initialAttributeRef, editingAttributeHierarchy, onClose, onSaveOrUpdateSuccess, onDeleteSuccess, onAddAttributeClicked, onCreateHierarchyClicked }: IAttributeHierarchyDialogProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AttributeHierarchyDialog.d.ts.map