/************ Processor: ts ************/ // definitions.ts declare namespace ns_0 { /// export interface IPropsDropdowm { handleClick?: () => void; show: boolean; items?: Array; children?: React.ReactNode; isImage?: boolean; title?: string; } } // index.tsx declare namespace ns_1 { /// import IPropsDropdowm = ns_0.IPropsDropdowm; export function DropdownBottomMenu({ handleClick, show, items, children, isImage, title }: IPropsDropdowm): JSX.Element; } // item.tsx declare namespace ns_2 { /// export const MenuItem: ({ item }: { item: any; }) => JSX.Element; } // list.tsx declare namespace ns_3 { /// export const MenuList: ({ items }: { items: any; }) => JSX.Element; } export import DropdownBottomMenu = ns_1.DropdownBottomMenu; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };