/**
* @module parjs
*//** */
import { Parjser } from"../parjser";
/**
* Returns a parser that succeeds without consuming input and yields the
* constant `value`.
* @param value The value the returned parser will yield.
*/
export declarefunctionresult<T>(value: T): Parjser<T>;