@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
9 lines (8 loc) • 434 B
TypeScript
import type { VariantItemPropTypes } from '../components/VariantManagement/VariantItem.js';
import type { ListItemStandardDomRef } from '../webComponents/ListItemStandard/index.js';
export interface SelectedVariant extends VariantItemPropTypes {
variantItem: ListItemStandardDomRef;
}
export declare const VariantManagementContext: import("react").Context<{
selectVariantItem: (_selectedVariant: SelectedVariant) => void;
}>;