1 | import * as React from 'react';
|
2 | export interface MenuItemActionProps extends Omit<React.HTMLProps<HTMLButtonElement>, 'type' | 'ref'> {
|
3 |
|
4 | className?: string;
|
5 |
|
6 | icon?: 'favorites' | React.ReactNode;
|
7 |
|
8 | onClick?: (event?: any) => void;
|
9 |
|
10 | 'aria-label'?: string;
|
11 |
|
12 | isFavorited?: boolean;
|
13 |
|
14 | isDisabled?: boolean;
|
15 |
|
16 | actionId?: any;
|
17 |
|
18 | innerRef?: React.Ref<any>;
|
19 | }
|
20 | export declare const MenuItemAction: React.ForwardRefExoticComponent<MenuItemActionProps & React.RefAttributes<HTMLButtonElement>>;
|
21 |
|
\ | No newline at end of file |