1 | import type { FC, ReactNode } from 'react';
|
2 | import { NativeProps } from '../../utils/native-props';
|
3 | export declare type DividerProps = {
|
4 | contentPosition?: 'left' | 'right' | 'center';
|
5 | direction?: 'horizontal' | 'vertical';
|
6 | children?: ReactNode;
|
7 | } & NativeProps;
|
8 | export declare const Divider: FC<DividerProps>;
|