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