export declare class SagaResponse<ContextType> {
    state: "success" | "failed";
    context: ContextType;
    history: any[];
    errors: Array<any>;
}
