/**
* @module parjs
*//** */
import { Parjser } from"../parjser";
/**
* Returns a parser that succeeds if there is no more input.
* @param result Optionally, the result the parser will yield. Defaults to
* undefined.
*/
export declarefunctioneof<T>(result?: T): Parjser<T>;