14 lines
417 B
TypeScript
14 lines
417 B
TypeScript
import * as React from 'react';
|
|
import { StandardProps } from '..';
|
|
import { ListProps, ListClassKey } from '../List';
|
|
|
|
export interface MenuListProps extends StandardProps<ListProps, MenuListClassKey, 'onKeyDown'> {
|
|
onKeyDown?: React.ReactEventHandler<React.KeyboardEvent<any>>;
|
|
}
|
|
|
|
export type MenuListClassKey = ListClassKey;
|
|
|
|
declare const MenuList: React.ComponentType<MenuListProps>;
|
|
|
|
export default MenuList;
|