import { type StyleProp, type ViewStyle } from 'react-native'; import React, { type ReactNode } from 'react'; type Props = { orientation?: 'center' | 'right' | 'left'; children?: ReactNode | string; dashed?: boolean; orientationMargin?: number; styles?: StyleProp; type?: 'vertical' | 'horizontal'; plain?: boolean; }; declare const Divider: (props: Props) => React.JSX.Element; export default Divider; //# sourceMappingURL=Divider.d.ts.map