import React from "react"; import { ParentProductInfo } from "../use-parent-products"; interface VariationSelectorProps { parentInfo: ParentProductInfo; onSelectionChange: (componentKey: string, optionId: string, quantity: number, variationId?: string) => void; componentKey: string; optionId: string; selectedVariationId?: string; isFixedPrice: boolean; } export declare function VariationSelector({ parentInfo, onSelectionChange, componentKey, optionId, selectedVariationId, isFixedPrice, }: VariationSelectorProps): React.JSX.Element; export {};