import React from "react"; import type { Dispatch } from "react"; import type { Options } from "./types"; interface DropDownMenuProps { /** * List of options to be selected * @default false */ readonly options: Options; /** * Change handler. */ readonly setOptions: Dispatch>; } export declare function DropDownMenu({ options, setOptions }: DropDownMenuProps): React.JSX.Element; export {};