export declare abstract class AbstractAction {
    abstract handle(context?: any): Promise<void>;
}
