import type { Parjser } from "../parjser"; import type { FailureInfo } from "../result"; /** * Returns a parser that fails softly with a given reason. * * @param reason The reason for the failure. */ export declare function nope(reason: string): Parjser; /** * Returns a parser that will always fail with the given failure info. * * @param pFailure How the parser should fail. */ export declare function fail(pFailure?: Partial | string): Parjser; //# sourceMappingURL=fail.d.ts.map