/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. */ type Result = { code: string | null; importedComponents: { [identifier: string]: string; }; }; /** returns `null` if failed to transpile */ export declare function mdxToReactString(src: string): Result; export {};