/**
* @module parjs/combinators
*//** */
import { ParjsCombinator } from"../../";
/**
* Applies the source parser. If it succeeds, backtracks to the current position in the input
* and yields the result.
*/
export declarefunctionbacktrack<T>(): ParjsCombinator<T, T>;