import type { CSSProperties } from 'react'; export type AnsiHtmlProps = { className?: string; text?: string; style?: CSSProperties; }; export declare const AnsiHtml: ({ className, style, text }: AnsiHtmlProps) => import("react/jsx-runtime").JSX.Element;