/** * Official Type definitions for the LemonadeJS plugins * https://lemonadejs.net * Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped */ import Component from './index'; interface Topmenu { ref?: MutableRefObject; (): any [key: string]: any } type Props = IntrinsicAttributes & Component.Options & Topmenu; declare function Topmenu(props: Props): any; export default Topmenu;