import type { ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface HRTrimmedTheme { base: string; } export interface HRTrimmedProps extends Omit, "ref">, ThemingProps { } export declare const HRTrimmed: import("react").ForwardRefExoticComponent>;