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