import React from 'react'; export interface MyDividerEDProps { style?: React.CSSProperties; dividerText?: string; showTitle?: boolean; type?: string; titleColor?: string; titleFontSize?: string; titleLineHeight?: string; titleFontWeight?: string; customStyle?: React.CSSProperties; dashed?: boolean | string; dashedWidth?: number; dashedMargin?: number; width?: number; height?: number; } declare const DividerED: React.FC; export default DividerED;