import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface HrProps extends StyleProps, IdProps {
    height?: number | string;
    color?: 'primary' | 'success' | 'error' | 'warning' | 'disabled';
}
export declare const Hr: ({ id, style, height, color, className }: HrProps) => import("react/jsx-runtime").JSX.Element;
