import Options from './Options'; import { FeedbackType, MatchEstimated } from './types'; declare class Feedback { private options; private matchers; constructor(options: Options); getFeedback(score: number, sequence: MatchEstimated[]): FeedbackType; private getLongestMatch; private getMatchFeedback; } export default Feedback;