import React from "react"; import { ComponentProduct } from "../types"; import { OptionProduct } from "../use-bundle-option-products"; interface OptionSelectorProps { option: NonNullable[0]; index: number; componentKey: string; selectedOptions: Record; onSelectionChange: (componentKey: string, optionId: string, quantity: number) => void; optionProducts: Record; productsLoading: boolean; isFixedPrice: boolean; isSingleSelect: boolean; } export declare const OptionSelector: React.NamedExoticComponent; export {};