import * as react from 'react'; import { ReactNode } from 'react'; import { ViewStyle } from 'react-native'; interface DividerProps { orientation?: "horizontal" | "vertical"; label?: ReactNode; inset?: number; color?: string; thickness?: number; style?: ViewStyle; } declare function Divider({ orientation, label, inset, color, thickness, style, }: DividerProps): react.JSX.Element; export { Divider, type DividerProps };