/// import { FC } from 'react'; import { DimensionValue } from 'react-native'; interface DivisionProps { transparent?: boolean; gap?: DimensionValue; spacer?: boolean; type?: 'horizontal' | 'vertical'; } declare const Division: FC; export { Division };