import React from 'react'; import type { StyleProp, ViewStyle, ViewProps } from 'react-native'; interface DividerProps extends ViewProps { /** * Horizontal margin size. There is no margin by default. */ marginHorizontal?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge'; /** * Vertical margin size. There is no margin by default. */ marginVertical?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge'; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; } declare const Divider: ({ marginHorizontal, marginVertical, style, testID, ...nativeProps }: DividerProps) => React.JSX.Element; export default Divider;