export { Title, TitleProps } from './title.js';
export { Text, TextProps } from './text.js';
import * as react_jsx_runtime from 'react/jsx-runtime';
import React__default from 'react';
export { Code, CodeProps } from './code.js';
export { Blockquote, BlockquoteProps } from './blockquote.js';
import './variants.js';

type BoldProps = {
    className?: string;
} & React__default.HTMLAttributes<any>;
declare function Bold({ children, className, ...props }: React__default.PropsWithChildren<BoldProps>): react_jsx_runtime.JSX.Element;
declare namespace Bold {
    var displayName: string;
}

type ItalicProps = {
    className?: string;
} & React__default.HTMLAttributes<any>;
declare function Italic({ children, className, ...props }: React__default.PropsWithChildren<ItalicProps>): react_jsx_runtime.JSX.Element;
declare namespace Italic {
    var displayName: string;
}

export { Bold, type BoldProps, Italic, type ItalicProps };
