import type { ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface HRTextTheme { base: string; hrLine: string; text: string; } export interface HRTextProps extends Omit, "ref">, ThemingProps { text: string; } export declare const HRText: import("react").ForwardRefExoticComponent>;