import { Response, IncorrectSequence, PartialResponse } from '../../interfaces'; export declare function incorrectSequenceMatchHelper(responseString: string, incorrectSequenceParticle: string, caseInsensitive: boolean): boolean; export declare function incorrectSequenceMatch(responseString: string, incorrectSequences: Array): IncorrectSequence; export declare function incorrectSequenceChecker(responseString: string, incorrectSequences: Array, responses: Array): PartialResponse | undefined; export declare function incorrectSequenceResponseBuilder(incorrectSequenceMatch: IncorrectSequence, responses: Array): PartialResponse;