import React from 'react';
import { IEnhancedDividerProps } from './types';
/**
 * Enhanced Divider can be use to give a horizontal separation between components, a good replacement
 * for <hr> in html, with additional content support, powered by various styles (with theming) and settings
 */
declare const EnhancedDivider: React.ForwardRefExoticComponent<IEnhancedDividerProps & React.RefAttributes<HTMLHRElement>>;
export { EnhancedDivider };
