/** * Copyright (c) @talatkuyuk AKA @ipikuka * SPDX-License-Identifier: MPL-2.0 */ import type { EvaluateProps, EvaluateResult } from "./types.js"; /** * "compiles" the MDX source and "runs" the javascript code in the compiled source, so it basically "evaluates" the MDX. * * returns the frontmatter, exported object and the react server component to be rendered on the server. * */ export declare function evaluate = Record, TScope extends Record = Record>({ source, options, components, }: EvaluateProps): Promise>; //# sourceMappingURL=evaluate.d.ts.map