import React from 'react'; export interface MyDividerProps { visible: any; dividerText?: string; onSelectedRowsRelease?: (e: any[]) => void; onSelectedRowKeysRelease?: (e: any[]) => void; onSelectedKeysRelease?: (e: any[]) => void; onEditingKeyRelease?: (e: any[]) => void; onInlineEditRelease?: (e: any) => void; onInlineSaveRelease?: (e: any) => void; onSelectedDataRelease?: (e: any[]) => void; pageState?: any; pagePublicState?: any; type?: string; width?: number; height?: number; style?: React.CSSProperties; customStyle?: React.CSSProperties; basicStatus?: string; dashed?: boolean; showTitle?: boolean; titleColor?: string; titleFontSize?: string; titleLineHeight?: string; titleFontWeight?: string; dashedWidth?: number; dashedMargin?: number; } declare const MyDivider: React.FC; export default MyDivider;