import type { StyleProp, TextStyle, ViewStyle } from 'react-native'; export type TVariant = 'primary' | 'secondary' | 'outline' | 'success' | 'danger'; export type TChildren = string | string[] | JSX.Element | JSX.Element[]; export type TSize = 'small' | 'medium' | 'large'; export type THorizontalAlignment = 'left' | 'center' | 'right'; export type TVerticalAlignment = 'top' | 'middle' | 'bottom'; export type TStyle = StyleProp; export type TTextStyle = StyleProp; //# sourceMappingURL=types.d.ts.map