import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface HRProperties {
    theme?: Theme;
    style?: React.CSSProperties;
    className?: string;
}
declare const HR: React.FC<HRProperties>;
export default HR;
