import React from 'react'; export type HrProps = { /** * Stylistic variations for the horizontal rule * * **Default is `"brand"`**. * @deprecated */ variant?: 'brand'; /** * Size variations for the horizontal rule. * * **Default is `"lg"`**. * @deprecated */ size?: 'lg'; /** * CSS class names that can be appended to the component. */ className?: string; }; /** * `import {Hr} from "@chanzuckerberg/eds";` * * Horizontal rule component to present a horizontal line separating content. */ export declare const Hr: { ({ className, size, variant, ...other }: HrProps): React.JSX.Element; displayName: string; };