import { Action } from "./../index";
export declare class RecursiveAction extends Action {
    constructor();
    run(): Promise<{
        [key: string]: any;
    } & {
        local: boolean;
    }>;
}
