/** * Copyright (c) @talatkuyuk AKA @ipikuka * SPDX-License-Identifier: MPL-2.0 */ import type { SerializeResult, SerializeProps, SerializeOptions } from "./types.js"; export type { SerializeResult, SerializeProps, SerializeOptions }; /** * compiles the MDX source. * * the compiled source can be passed into "" or "hydrate" to be rendered on the client side (csr). * */ export declare function serialize = Record, TScope extends Record = Record>({ source, options, }: SerializeProps): Promise>; //# sourceMappingURL=serialize.d.ts.map