export declare function conjugateGradient(f: any, initial: any, params: any): {
    x: any;
    fx: number;
    fxprime: any;
};
export declare function conjugateGradientSolve(A: any, b: any, x: any, history?: any): any;
