/** finds the zeros of a function, given two starting points (which must
 * have opposite signs */
export declare function bisect(f: any, a: any, b: any, parameters?: any): any;
