import type { JSXElement } from "solid-js";
import "./style/index.css";
export interface TypographyProps {
    children: JSXElement;
}
/**
 * @zh 兼容中文排版的文本专用容器，自动响应式组件。在内部使用的标签具有排版样式。
 *
 */
export declare const Typography: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<TypographyProps, HTMLElement, string>>;
export { Typography as Typo };
