import React from 'react'; import { BaseProps } from '../_utils/props'; export declare type DivideType = 'horizontal' | 'vertical'; export declare type DivideAlign = 'left' | 'right' | 'center'; export interface DividerProps extends BaseProps { type?: DivideType; dashed?: boolean; align?: DivideAlign; children?: React.ReactNode; } declare const Divider: (props: DividerProps) => JSX.Element; export default Divider;