import React, { FC, ReactNode } from 'react'; export declare type Item = { title: string; icon?: ReactNode; value?: unknown; page?: { title?: string; items: Item[]; }; }; declare type NavigationalDropdownProps = FC<{ items: Item[]; onClick?: (item: Item, event: React.MouseEvent) => void; trigger?: ReactNode; value?: unknown; }>; export declare const NavigationalDropdown: NavigationalDropdownProps; export {};