/// import { Option } from './type'; export declare function ParentMenuItem({ parentOption, selectedOptions, onChangeOptions, }: { parentOption: { options: { label: string; options: Option[]; }[]; label: string; }; selectedOptions: Option[] | undefined; onChangeOptions: (option: Option[]) => void; }): import("react").JSX.Element;