import type { 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 declare function result(value: T): Parjser; //# sourceMappingURL=result.d.ts.map