import { MethodAction } from "../MethodAction";
export declare class ArgCaptor<T extends any[]> {
    private actions;
    constructor(actions: MethodAction[]);
    first(): T;
    second(): T;
    third(): T;
    beforeLast(): T;
    last(): T;
    byCallIndex(index: number): T;
    all(): T[];
}
