import type { StyleProp, ViewStyle } from 'react-native'; import type { SizeProp } from '../../tokens/size'; import type { ColorProp, SxProps } from '../../types/shared'; export interface DividerProps { orientation?: 'horizontal' | 'vertical'; variant?: 'fullWidth' | 'inset' | 'middle'; bold?: boolean; testID?: string; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; } //# sourceMappingURL=types.d.ts.map