import ActionAbstract from './ActionAbstract';
import HttpMethods from './HttpMethods';
import { Action, IconType, TextType } from '../common/types';
export type HttpActionProps = Action & {
    url: string;
};
export default class HttpAction extends ActionAbstract {
    desc?: TextType | number;
    method?: HttpMethods;
    openIcon?: IconType;
    order?: number | string;
    statusIcon?: IconType;
    url: string;
    constructor(props: HttpActionProps);
}
