import React from 'react'; export type ProCardDividerProps = { /** * 样式 * * @ignore */ style?: React.CSSProperties; /** * ClassName * * @ignore */ className?: string; /** * 布局类型 * * @default vertical */ type?: 'horizontal' | 'vertical'; }; declare const ProCardDivider: React.FC; export default ProCardDivider;