/************
Processor: ts
************/

// definitions.ts
declare namespace ns_0 {
  /// <reference types="react" />
  export interface IPropsDropdowm {
    handleClick?: () => void;
    show: boolean;
    items?: Array<string>;
    children?: React.ReactNode;
    isImage?: boolean;
    title?: string;
  }
}


// index.tsx
declare namespace ns_1 {
  /// <reference types="react" />
  import IPropsDropdowm = ns_0.IPropsDropdowm;
  export function DropdownBottomMenu({
    handleClick,
    show,
    items,
    children,
    isImage,
    title
  }: IPropsDropdowm): JSX.Element;
}


// item.tsx
declare namespace ns_2 {
  /// <reference types="react" />
  export const MenuItem: ({
    item
  }: {
    item: any;
  }) => JSX.Element;
}


// list.tsx
declare namespace ns_3 {
  /// <reference types="react" />
  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 };