export declare class Performance { protected errorRate: number; /** * Constructor that sets the error rate. * * @param errorRate Double input. */ constructor(errorRate: number); /** * Accessor for the error rate. * * @return Double errorRate. */ getErrorRate(): number; }