import type { ParjsCombinator, ParjsProjection } from "../parjser"; /** * Applies the source parser and projects its result with `projection`. * * @param projection The projection to apply. */ export declare function map(projection: ParjsProjection): ParjsCombinator; /** * Applies the source parser and yields the constant value `result`. * * @param result The constant value to yield. */ export declare function mapConst(result: T): ParjsCombinator; //# sourceMappingURL=map.d.ts.map