/// <reference types="react" />
import * as React from "react";
export interface Styles {
    root?: Record<string, any>;
    line?: Record<string, any>;
    text?: Record<string, any>;
}
export declare const defaultStyles: Styles;
export interface Props {
    styles?: Styles;
    text?: React.ReactNode;
}
/**
 * Use textStyle.order: -1 to shift label to left and then you may want
 * to adjust margins.
 */
export declare const Hr: React.SFC<Props>;
export default Hr;
