import type { FC, ReactNode } from 'react'; import { NativeProps } from '../../utils'; export type DividerProps = { position?: 'left' | 'right' | 'center'; direction?: 'horizontal' | 'vertical'; children?: ReactNode; } & NativeProps; declare const Divider: FC; export default Divider;