type ZenCodeType = { content: string; light?: number; }; /** * @docunator * @title ZenCode * @author Danilo Ramírez Mattey * @version 1.0.0 * @description A simple code block component that can be used to display code snippets throughout the app. It styles the code block according to the current theme. * @category Themed Components * @param {string} content The code content to display * @param {number} light A value to lighten or darken the background color. Default is -0.1 (slightly darker). */ export default function ZenCode({ content, light }: ZenCodeType): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ZenCode.d.ts.map