import { ActionAbstractProps, HttpMethods } from '../../action';
import { IconType } from './IconType';
import { TextType } from './TextType';
export type Action = ActionAbstractProps & {
    desc?: TextType | number;
    method?: HttpMethods;
    openIcon?: IconType;
    order?: number;
    statusIcon?: IconType;
};
