import { ActionHandler } from '../interfaces/action-handler.interface';
import { ActionContainer } from '../models/action-config.model';
import { Observable } from 'rxjs';
import * as i0 from "@angular/core";
export declare class ActionFactoryService {
    private handlers;
    constructor(handlers: ActionHandler[]);
    /**
     * Delegates the action to the appropriate handler.
     */
    performCustomAction(container: ActionContainer): Observable<any>;
    static ɵfac: i0.ɵɵFactoryDeclaration<ActionFactoryService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<ActionFactoryService>;
}
