import type { StyleProp, ViewStyle } from 'react-native'; import type { ThemableViewStyle } from 'src/theme/themeTypes'; import type themeType from '../theme/theme'; declare const createViewStyle: ({ borderRadius, borderBottomEndRadius, borderBottomLeftRadius, borderBottomRightRadius, borderBottomStartRadius, borderTopEndRadius, borderTopLeftRadius, borderTopRightRadius, borderTopStartRadius, margin, marginBottom, marginEnd, marginHorizontal, marginLeft, marginRight, marginStart, marginTop, marginVertical, padding, paddingBottom, paddingEnd, paddingHorizontal, paddingLeft, paddingRight, paddingStart, paddingTop, paddingVertical, backgroundColor, shadow, color, borderColor, borderTopColor, borderBottomColor, borderLeftColor, borderRightColor, zIndex, ...otherProps }: ThemableViewStyle, themeObject: T) => StyleProp; export default createViewStyle;