import { Options } from '../options.backend'; import Tape from '../tape.backend'; import { Req, Res } from '../types.backend'; export default class ErrorRate { private options; constructor(options: Options); shouldSimulate(req: Req, tape?: Tape): boolean; simulate(req: Req): Res; }