import React from "react"; interface ProductOptionsProps { label: string; value: string; optionId: string; onClick: () => void; } interface ProductOptionsGroupProps { allOptions: any[]; handleOptionClick: (optionId: any) => void; range?: { name: string; }; getSelectedValue: (option: any) => string; } export declare function ProductOptions({ label, value, optionId, onClick }: ProductOptionsProps): React.JSX.Element; export declare function ProductOptionsGroup({ allOptions, handleOptionClick, range, getSelectedValue }: ProductOptionsGroupProps): React.JSX.Element; export {};