import React from "react"; import { ListProps } from "../List/List"; import { PaperProps } from "../Paper"; export interface MenuListProps extends ListProps { /** * 内部的に使われているPaperコンポーネントに渡すPropsを指定します。 */ paperProps?: PaperProps; } export declare const MenuList: React.ForwardRefExoticComponent;