import React from "react";
import "./Ui89Hr.css";
import { Ui89Theme } from "../theme";
import "../style/chosen-theme.css";
export declare enum Ui89HrPropsLook {
    straight = "straight",
    dotted = "dotted",
    dashed = "dashed",
    double = "double"
}
export interface Ui89HrProps {
    look?: Ui89HrPropsLook | keyof typeof Ui89HrPropsLook;
    theme?: Ui89Theme | keyof typeof Ui89Theme;
}
export declare function Ui89Hr({ look, theme }: Ui89HrProps): React.JSX.Element;
