import React from "react"; import { ComponentProduct } from "../types"; import { ParentProductInfo } from "../use-parent-products"; import { OptionProduct } from "../use-bundle-option-products"; interface ComponentSelectorProps { componentKey: string; component: ComponentProduct; selectedOptions: Record; onSelectionChange: (componentKey: string, optionId: string, quantity: number, variationId?: string) => void; optionProducts: Record; productsLoading: boolean; isFixedPrice: boolean; parentProducts: Record; } export declare function ComponentSelector({ componentKey, component, selectedOptions, onSelectionChange, optionProducts, productsLoading, isFixedPrice, parentProducts, }: ComponentSelectorProps): React.JSX.Element; export {};