mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 11:47:54 +01:00
9 lines
265 B
TypeScript
9 lines
265 B
TypeScript
/// <reference types="react" />
|
|
import { MenuItem } from "../../components/menu/types";
|
|
declare type DropdownProps = {
|
|
selectedItem: string | JSX.Element;
|
|
items: MenuItem[];
|
|
};
|
|
export declare function Dropdown(props: DropdownProps): JSX.Element;
|
|
export {};
|