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;
}>;
