react-native-timer-picker 2.6.0 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/dist/commonjs/components/DurationScroll/DurationScroll.js +426 -0
  2. package/dist/commonjs/components/DurationScroll/DurationScroll.js.map +1 -0
  3. package/dist/commonjs/components/DurationScroll/index.js +27 -0
  4. package/dist/commonjs/components/DurationScroll/index.js.map +1 -0
  5. package/dist/commonjs/components/DurationScroll/types.js +6 -0
  6. package/dist/commonjs/components/DurationScroll/types.js.map +1 -0
  7. package/dist/commonjs/components/Modal/Modal.js +107 -0
  8. package/dist/commonjs/components/Modal/Modal.js.map +1 -0
  9. package/dist/commonjs/components/Modal/index.js +27 -0
  10. package/dist/commonjs/components/Modal/index.js.map +1 -0
  11. package/dist/commonjs/components/Modal/styles.js +25 -0
  12. package/dist/commonjs/components/Modal/styles.js.map +1 -0
  13. package/dist/commonjs/components/Modal/types.js +6 -0
  14. package/dist/commonjs/components/Modal/types.js.map +1 -0
  15. package/dist/commonjs/components/PickerItem/PickerItem.js +48 -0
  16. package/dist/commonjs/components/PickerItem/PickerItem.js.map +1 -0
  17. package/dist/commonjs/components/PickerItem/index.js +14 -0
  18. package/dist/commonjs/components/PickerItem/index.js.map +1 -0
  19. package/dist/commonjs/components/TimerPicker/TimerPicker.js +266 -0
  20. package/dist/commonjs/components/TimerPicker/TimerPicker.js.map +1 -0
  21. package/dist/commonjs/components/TimerPicker/index.js +39 -0
  22. package/dist/commonjs/components/TimerPicker/index.js.map +1 -0
  23. package/dist/commonjs/components/TimerPicker/styles.js +140 -0
  24. package/dist/commonjs/components/TimerPicker/styles.js.map +1 -0
  25. package/dist/commonjs/components/TimerPicker/types.js +6 -0
  26. package/dist/commonjs/components/TimerPicker/types.js.map +1 -0
  27. package/dist/commonjs/components/TimerPickerModal/TimerPickerModal.js +173 -0
  28. package/dist/commonjs/components/TimerPickerModal/TimerPickerModal.js.map +1 -0
  29. package/dist/commonjs/components/TimerPickerModal/index.js +39 -0
  30. package/dist/commonjs/components/TimerPickerModal/index.js.map +1 -0
  31. package/dist/commonjs/components/TimerPickerModal/styles.js +95 -0
  32. package/dist/commonjs/components/TimerPickerModal/styles.js.map +1 -0
  33. package/dist/commonjs/components/TimerPickerModal/types.js +6 -0
  34. package/dist/commonjs/components/TimerPickerModal/types.js.map +1 -0
  35. package/dist/commonjs/index.js +21 -0
  36. package/dist/commonjs/index.js.map +1 -0
  37. package/dist/commonjs/tests/DurationScroll.test.js +163 -0
  38. package/dist/commonjs/tests/DurationScroll.test.js.map +1 -0
  39. package/dist/commonjs/tests/Modal.test.js +99 -0
  40. package/dist/commonjs/tests/Modal.test.js.map +1 -0
  41. package/dist/commonjs/tests/TimerPicker.test.js +161 -0
  42. package/dist/commonjs/tests/TimerPicker.test.js.map +1 -0
  43. package/dist/commonjs/tests/TimerPickerModal.test.js +276 -0
  44. package/dist/commonjs/tests/TimerPickerModal.test.js.map +1 -0
  45. package/dist/commonjs/tests/colorToRgba.test.js +176 -0
  46. package/dist/commonjs/tests/colorToRgba.test.js.map +1 -0
  47. package/dist/commonjs/tests/generateNumbers.test.js +350 -0
  48. package/dist/commonjs/tests/generateNumbers.test.js.map +1 -0
  49. package/dist/commonjs/tests/getAdjustedLimit.test.js +324 -0
  50. package/dist/commonjs/tests/getAdjustedLimit.test.js.map +1 -0
  51. package/dist/commonjs/tests/getDurationAndIndexFromScrollOffset.test.js +424 -0
  52. package/dist/commonjs/tests/getDurationAndIndexFromScrollOffset.test.js.map +1 -0
  53. package/dist/commonjs/tests/getInitialScrollIndex.test.js +396 -0
  54. package/dist/commonjs/tests/getInitialScrollIndex.test.js.map +1 -0
  55. package/dist/commonjs/tests/getSafeInitialValue.test.js +499 -0
  56. package/dist/commonjs/tests/getSafeInitialValue.test.js.map +1 -0
  57. package/dist/commonjs/tests/padNumber.test.js +301 -0
  58. package/dist/commonjs/tests/padNumber.test.js.map +1 -0
  59. package/dist/commonjs/utils/colorToRgba.js +87 -0
  60. package/dist/commonjs/utils/colorToRgba.js.map +1 -0
  61. package/dist/commonjs/utils/generateNumbers.js +124 -0
  62. package/dist/commonjs/utils/generateNumbers.js.map +1 -0
  63. package/dist/commonjs/utils/getAdjustedLimit.js +58 -0
  64. package/dist/commonjs/utils/getAdjustedLimit.js.map +1 -0
  65. package/dist/commonjs/utils/getDurationAndIndexFromScrollOffset.js +62 -0
  66. package/dist/commonjs/utils/getDurationAndIndexFromScrollOffset.js.map +1 -0
  67. package/dist/commonjs/utils/getInitialScrollIndex.js +57 -0
  68. package/dist/commonjs/utils/getInitialScrollIndex.js.map +1 -0
  69. package/dist/commonjs/utils/getSafeInitialValue.js +41 -0
  70. package/dist/commonjs/utils/getSafeInitialValue.js.map +1 -0
  71. package/dist/commonjs/utils/padNumber.js +40 -0
  72. package/dist/commonjs/utils/padNumber.js.map +1 -0
  73. package/dist/module/components/DurationScroll/DurationScroll.js +418 -0
  74. package/dist/module/components/DurationScroll/DurationScroll.js.map +1 -0
  75. package/dist/module/components/DurationScroll/index.js +3 -0
  76. package/dist/module/components/DurationScroll/index.js.map +1 -0
  77. package/dist/module/components/DurationScroll/types.js +2 -0
  78. package/dist/module/components/DurationScroll/types.js.map +1 -0
  79. package/dist/module/components/Modal/Modal.js +99 -0
  80. package/dist/module/components/Modal/Modal.js.map +1 -0
  81. package/dist/module/components/Modal/index.js +3 -0
  82. package/dist/module/components/Modal/index.js.map +1 -0
  83. package/dist/module/components/Modal/styles.js +19 -0
  84. package/dist/module/components/Modal/styles.js.map +1 -0
  85. package/dist/module/components/Modal/types.js +2 -0
  86. package/dist/module/components/Modal/types.js.map +1 -0
  87. package/dist/module/components/PickerItem/PickerItem.js +41 -0
  88. package/dist/module/components/PickerItem/PickerItem.js.map +1 -0
  89. package/dist/module/components/PickerItem/index.js +2 -0
  90. package/dist/module/components/PickerItem/index.js.map +1 -0
  91. package/dist/module/components/TimerPicker/TimerPicker.js +258 -0
  92. package/dist/module/components/TimerPicker/TimerPicker.js.map +1 -0
  93. package/dist/module/components/TimerPicker/index.js +4 -0
  94. package/dist/module/components/TimerPicker/index.js.map +1 -0
  95. package/dist/module/components/TimerPicker/styles.js +133 -0
  96. package/dist/module/components/TimerPicker/styles.js.map +1 -0
  97. package/dist/module/components/TimerPicker/types.js +2 -0
  98. package/dist/module/components/TimerPicker/types.js.map +1 -0
  99. package/dist/module/components/TimerPickerModal/TimerPickerModal.js +165 -0
  100. package/dist/module/components/TimerPickerModal/TimerPickerModal.js.map +1 -0
  101. package/dist/module/components/TimerPickerModal/index.js +4 -0
  102. package/dist/module/components/TimerPickerModal/index.js.map +1 -0
  103. package/dist/module/components/TimerPickerModal/styles.js +88 -0
  104. package/dist/module/components/TimerPickerModal/styles.js.map +1 -0
  105. package/dist/module/components/TimerPickerModal/types.js +2 -0
  106. package/dist/module/components/TimerPickerModal/types.js.map +1 -0
  107. package/dist/module/index.js +3 -0
  108. package/dist/module/index.js.map +1 -0
  109. package/dist/module/tests/DurationScroll.test.js +160 -0
  110. package/dist/module/tests/DurationScroll.test.js.map +1 -0
  111. package/dist/module/tests/Modal.test.js +96 -0
  112. package/dist/module/tests/Modal.test.js.map +1 -0
  113. package/dist/module/tests/TimerPicker.test.js +159 -0
  114. package/dist/module/tests/TimerPicker.test.js.map +1 -0
  115. package/dist/module/tests/TimerPickerModal.test.js +273 -0
  116. package/dist/module/tests/TimerPickerModal.test.js.map +1 -0
  117. package/dist/module/tests/colorToRgba.test.js +174 -0
  118. package/dist/module/tests/colorToRgba.test.js.map +1 -0
  119. package/dist/module/tests/generateNumbers.test.js +348 -0
  120. package/dist/module/tests/generateNumbers.test.js.map +1 -0
  121. package/dist/module/tests/getAdjustedLimit.test.js +322 -0
  122. package/dist/module/tests/getAdjustedLimit.test.js.map +1 -0
  123. package/dist/module/tests/getDurationAndIndexFromScrollOffset.test.js +422 -0
  124. package/dist/module/tests/getDurationAndIndexFromScrollOffset.test.js.map +1 -0
  125. package/dist/module/tests/getInitialScrollIndex.test.js +394 -0
  126. package/dist/module/tests/getInitialScrollIndex.test.js.map +1 -0
  127. package/dist/module/tests/getSafeInitialValue.test.js +496 -0
  128. package/dist/module/tests/getSafeInitialValue.test.js.map +1 -0
  129. package/dist/module/tests/padNumber.test.js +299 -0
  130. package/dist/module/tests/padNumber.test.js.map +1 -0
  131. package/dist/module/utils/colorToRgba.js +80 -0
  132. package/dist/module/utils/colorToRgba.js.map +1 -0
  133. package/dist/module/utils/generateNumbers.js +117 -0
  134. package/dist/module/utils/generateNumbers.js.map +1 -0
  135. package/dist/module/utils/getAdjustedLimit.js +51 -0
  136. package/dist/module/utils/getAdjustedLimit.js.map +1 -0
  137. package/dist/module/utils/getDurationAndIndexFromScrollOffset.js +55 -0
  138. package/dist/module/utils/getDurationAndIndexFromScrollOffset.js.map +1 -0
  139. package/dist/module/utils/getInitialScrollIndex.js +50 -0
  140. package/dist/module/utils/getInitialScrollIndex.js.map +1 -0
  141. package/dist/module/utils/getSafeInitialValue.js +34 -0
  142. package/dist/module/utils/getSafeInitialValue.js.map +1 -0
  143. package/dist/module/utils/padNumber.js +33 -0
  144. package/dist/module/utils/padNumber.js.map +1 -0
  145. package/dist/typescript/components/DurationScroll/DurationScroll.d.ts +4 -0
  146. package/dist/typescript/components/DurationScroll/index.d.ts +2 -0
  147. package/dist/typescript/components/DurationScroll/types.d.ts +70 -0
  148. package/dist/typescript/components/Modal/Modal.d.ts +5 -0
  149. package/dist/typescript/components/Modal/index.d.ts +2 -0
  150. package/dist/typescript/components/Modal/styles.d.ts +17 -0
  151. package/dist/typescript/components/Modal/types.d.ts +16 -0
  152. package/dist/typescript/components/PickerItem/PickerItem.d.ts +19 -0
  153. package/dist/typescript/components/PickerItem/index.d.ts +1 -0
  154. package/dist/typescript/components/TimerPicker/TimerPicker.d.ts +4 -0
  155. package/dist/typescript/components/TimerPicker/index.d.ts +3 -0
  156. package/dist/typescript/components/TimerPicker/styles.d.ts +1583 -0
  157. package/dist/typescript/components/TimerPicker/types.d.ts +91 -0
  158. package/dist/typescript/components/TimerPickerModal/TimerPickerModal.d.ts +4 -0
  159. package/dist/typescript/components/TimerPickerModal/index.d.ts +3 -0
  160. package/dist/typescript/components/TimerPickerModal/styles.d.ts +952 -0
  161. package/dist/typescript/components/TimerPickerModal/types.d.ts +56 -0
  162. package/dist/typescript/index.d.ts +4 -0
  163. package/dist/typescript/tests/DurationScroll.test.d.ts +1 -0
  164. package/dist/typescript/tests/Modal.test.d.ts +1 -0
  165. package/dist/typescript/tests/TimerPicker.test.d.ts +1 -0
  166. package/dist/typescript/tests/TimerPickerModal.test.d.ts +1 -0
  167. package/dist/typescript/tests/colorToRgba.test.d.ts +1 -0
  168. package/dist/typescript/tests/generateNumbers.test.d.ts +1 -0
  169. package/dist/typescript/tests/getAdjustedLimit.test.d.ts +1 -0
  170. package/dist/typescript/tests/getDurationAndIndexFromScrollOffset.test.d.ts +1 -0
  171. package/dist/typescript/tests/getInitialScrollIndex.test.d.ts +1 -0
  172. package/dist/typescript/tests/getSafeInitialValue.test.d.ts +1 -0
  173. package/dist/typescript/tests/padNumber.test.d.ts +1 -0
  174. package/dist/typescript/utils/colorToRgba.d.ts +38 -0
  175. package/dist/typescript/utils/generateNumbers.d.ts +80 -0
  176. package/dist/typescript/utils/getAdjustedLimit.d.ts +30 -0
  177. package/dist/typescript/utils/getDurationAndIndexFromScrollOffset.d.ts +49 -0
  178. package/dist/typescript/utils/getInitialScrollIndex.d.ts +46 -0
  179. package/dist/typescript/utils/getSafeInitialValue.d.ts +38 -0
  180. package/dist/typescript/utils/padNumber.d.ts +28 -0
  181. package/package.json +3 -2
@@ -0,0 +1,952 @@
1
+ import type { DimensionValue, TextStyle, ViewStyle } from "react-native";
2
+ import type { CustomTimerPickerStyles } from "../TimerPicker/styles";
3
+ export declare const DEFAULT_COLUMN_WIDTH = 70;
4
+ export interface CustomTimerPickerModalStyles extends CustomTimerPickerStyles {
5
+ button?: TextStyle;
6
+ buttonContainer?: ViewStyle;
7
+ cancelButton?: TextStyle;
8
+ confirmButton?: TextStyle;
9
+ container?: ViewStyle;
10
+ contentContainer?: ViewStyle;
11
+ modalTitle?: TextStyle;
12
+ }
13
+ export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles | undefined, variables: {
14
+ hasModalTitle: boolean;
15
+ totalColumnWidth: number;
16
+ }) => {
17
+ button: {
18
+ color?: import("react-native").ColorValue | undefined;
19
+ fontFamily?: string | undefined;
20
+ fontSize: number;
21
+ fontStyle?: "normal" | "italic" | undefined;
22
+ fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
23
+ letterSpacing?: number | undefined;
24
+ lineHeight?: number | undefined;
25
+ textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
26
+ textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
27
+ textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | undefined;
28
+ textDecorationColor?: import("react-native").ColorValue | undefined;
29
+ textShadowColor?: import("react-native").ColorValue | undefined;
30
+ textShadowOffset?: {
31
+ width: number;
32
+ height: number;
33
+ } | undefined;
34
+ textShadowRadius?: number | undefined;
35
+ textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
36
+ testID?: string | undefined;
37
+ fontVariant?: import("react-native").FontVariant[] | undefined;
38
+ writingDirection?: "auto" | "ltr" | "rtl" | undefined;
39
+ backfaceVisibility?: "visible" | "hidden" | undefined;
40
+ backgroundColor?: import("react-native").ColorValue | undefined;
41
+ borderBlockColor?: import("react-native").ColorValue | undefined;
42
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
43
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
44
+ borderBottomColor?: import("react-native").ColorValue | undefined;
45
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
46
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
47
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
48
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
49
+ borderColor?: import("react-native").ColorValue | undefined;
50
+ borderCurve?: "circular" | "continuous" | undefined;
51
+ borderEndColor?: import("react-native").ColorValue | undefined;
52
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
53
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
54
+ borderLeftColor?: import("react-native").ColorValue | undefined;
55
+ borderRadius: import("react-native").AnimatableNumericValue;
56
+ borderRightColor?: import("react-native").ColorValue | undefined;
57
+ borderStartColor?: import("react-native").ColorValue | undefined;
58
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
59
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
60
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
61
+ borderTopColor?: import("react-native").ColorValue | undefined;
62
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
63
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
64
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
65
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
66
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
67
+ elevation?: number | undefined;
68
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
69
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
70
+ alignItems?: import("react-native").FlexAlignType | undefined;
71
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
72
+ aspectRatio?: number | string | undefined;
73
+ borderBottomWidth?: number | undefined;
74
+ borderEndWidth?: number | undefined;
75
+ borderLeftWidth?: number | undefined;
76
+ borderRightWidth?: number | undefined;
77
+ borderStartWidth?: number | undefined;
78
+ borderTopWidth?: number | undefined;
79
+ borderWidth: number;
80
+ bottom?: DimensionValue | undefined;
81
+ display?: "none" | "flex" | undefined;
82
+ end?: DimensionValue | undefined;
83
+ flex?: number | undefined;
84
+ flexBasis?: DimensionValue | undefined;
85
+ flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
86
+ rowGap?: number | undefined;
87
+ gap?: number | undefined;
88
+ columnGap?: number | undefined;
89
+ flexGrow?: number | undefined;
90
+ flexShrink?: number | undefined;
91
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
92
+ height?: DimensionValue | undefined;
93
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
94
+ left?: DimensionValue | undefined;
95
+ margin?: DimensionValue | undefined;
96
+ marginBottom?: DimensionValue | undefined;
97
+ marginEnd?: DimensionValue | undefined;
98
+ marginHorizontal: DimensionValue;
99
+ marginLeft?: DimensionValue | undefined;
100
+ marginRight?: DimensionValue | undefined;
101
+ marginStart?: DimensionValue | undefined;
102
+ marginTop?: DimensionValue | undefined;
103
+ marginVertical?: DimensionValue | undefined;
104
+ maxHeight?: DimensionValue | undefined;
105
+ maxWidth?: DimensionValue | undefined;
106
+ minHeight?: DimensionValue | undefined;
107
+ minWidth?: DimensionValue | undefined;
108
+ overflow: "visible" | "hidden" | "scroll";
109
+ padding?: DimensionValue | undefined;
110
+ paddingBottom?: DimensionValue | undefined;
111
+ paddingEnd?: DimensionValue | undefined;
112
+ paddingHorizontal: DimensionValue;
113
+ paddingLeft?: DimensionValue | undefined;
114
+ paddingRight?: DimensionValue | undefined;
115
+ paddingStart?: DimensionValue | undefined;
116
+ paddingTop?: DimensionValue | undefined;
117
+ paddingVertical: DimensionValue;
118
+ position?: "absolute" | "relative" | undefined;
119
+ right?: DimensionValue | undefined;
120
+ start?: DimensionValue | undefined;
121
+ top?: DimensionValue | undefined;
122
+ width?: DimensionValue | undefined;
123
+ zIndex?: number | undefined;
124
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
125
+ shadowColor?: import("react-native").ColorValue | undefined;
126
+ shadowOffset?: Readonly<{
127
+ width: number;
128
+ height: number;
129
+ }> | undefined;
130
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
131
+ shadowRadius?: number | undefined;
132
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
133
+ transformMatrix?: Array<number> | undefined;
134
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
135
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
136
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
137
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
138
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
139
+ textAlignVertical?: "auto" | "top" | "bottom" | "center" | undefined;
140
+ verticalAlign?: "auto" | "top" | "bottom" | "middle" | undefined;
141
+ includeFontPadding?: boolean | undefined;
142
+ };
143
+ buttonContainer: {
144
+ backfaceVisibility?: "visible" | "hidden" | undefined;
145
+ backgroundColor?: import("react-native").ColorValue | undefined;
146
+ borderBlockColor?: import("react-native").ColorValue | undefined;
147
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
148
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
149
+ borderBottomColor?: import("react-native").ColorValue | undefined;
150
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
151
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
152
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
153
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
154
+ borderColor?: import("react-native").ColorValue | undefined;
155
+ borderCurve?: "circular" | "continuous" | undefined;
156
+ borderEndColor?: import("react-native").ColorValue | undefined;
157
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
158
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
159
+ borderLeftColor?: import("react-native").ColorValue | undefined;
160
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
161
+ borderRightColor?: import("react-native").ColorValue | undefined;
162
+ borderStartColor?: import("react-native").ColorValue | undefined;
163
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
164
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
165
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
166
+ borderTopColor?: import("react-native").ColorValue | undefined;
167
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
168
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
169
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
170
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
171
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
172
+ elevation?: number | undefined;
173
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
174
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
175
+ alignItems?: import("react-native").FlexAlignType | undefined;
176
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
177
+ aspectRatio?: number | string | undefined;
178
+ borderBottomWidth?: number | undefined;
179
+ borderEndWidth?: number | undefined;
180
+ borderLeftWidth?: number | undefined;
181
+ borderRightWidth?: number | undefined;
182
+ borderStartWidth?: number | undefined;
183
+ borderTopWidth?: number | undefined;
184
+ borderWidth?: number | undefined;
185
+ bottom?: DimensionValue | undefined;
186
+ display?: "none" | "flex" | undefined;
187
+ end?: DimensionValue | undefined;
188
+ flex?: number | undefined;
189
+ flexBasis?: DimensionValue | undefined;
190
+ flexDirection: "row" | "column" | "row-reverse" | "column-reverse";
191
+ rowGap?: number | undefined;
192
+ gap?: number | undefined;
193
+ columnGap?: number | undefined;
194
+ flexGrow?: number | undefined;
195
+ flexShrink?: number | undefined;
196
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
197
+ height?: DimensionValue | undefined;
198
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
199
+ left?: DimensionValue | undefined;
200
+ margin?: DimensionValue | undefined;
201
+ marginBottom: DimensionValue;
202
+ marginEnd?: DimensionValue | undefined;
203
+ marginHorizontal?: DimensionValue | undefined;
204
+ marginLeft?: DimensionValue | undefined;
205
+ marginRight?: DimensionValue | undefined;
206
+ marginStart?: DimensionValue | undefined;
207
+ marginTop: DimensionValue;
208
+ marginVertical?: DimensionValue | undefined;
209
+ maxHeight?: DimensionValue | undefined;
210
+ maxWidth?: DimensionValue | undefined;
211
+ minHeight?: DimensionValue | undefined;
212
+ minWidth?: DimensionValue | undefined;
213
+ overflow?: "visible" | "hidden" | "scroll" | undefined;
214
+ padding?: DimensionValue | undefined;
215
+ paddingBottom?: DimensionValue | undefined;
216
+ paddingEnd?: DimensionValue | undefined;
217
+ paddingHorizontal?: DimensionValue | undefined;
218
+ paddingLeft?: DimensionValue | undefined;
219
+ paddingRight?: DimensionValue | undefined;
220
+ paddingStart?: DimensionValue | undefined;
221
+ paddingTop?: DimensionValue | undefined;
222
+ paddingVertical?: DimensionValue | undefined;
223
+ position?: "absolute" | "relative" | undefined;
224
+ right?: DimensionValue | undefined;
225
+ start?: DimensionValue | undefined;
226
+ top?: DimensionValue | undefined;
227
+ width?: DimensionValue | undefined;
228
+ zIndex?: number | undefined;
229
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
230
+ shadowColor?: import("react-native").ColorValue | undefined;
231
+ shadowOffset?: Readonly<{
232
+ width: number;
233
+ height: number;
234
+ }> | undefined;
235
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
236
+ shadowRadius?: number | undefined;
237
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
238
+ transformMatrix?: Array<number> | undefined;
239
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
240
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
241
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
242
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
243
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
244
+ };
245
+ cancelButton: {
246
+ color: import("react-native").ColorValue;
247
+ fontFamily?: string | undefined;
248
+ fontSize?: number | undefined;
249
+ fontStyle?: "normal" | "italic" | undefined;
250
+ fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
251
+ letterSpacing?: number | undefined;
252
+ lineHeight?: number | undefined;
253
+ textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
254
+ textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
255
+ textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | undefined;
256
+ textDecorationColor?: import("react-native").ColorValue | undefined;
257
+ textShadowColor?: import("react-native").ColorValue | undefined;
258
+ textShadowOffset?: {
259
+ width: number;
260
+ height: number;
261
+ } | undefined;
262
+ textShadowRadius?: number | undefined;
263
+ textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
264
+ testID?: string | undefined;
265
+ fontVariant?: import("react-native").FontVariant[] | undefined;
266
+ writingDirection?: "auto" | "ltr" | "rtl" | undefined;
267
+ backfaceVisibility?: "visible" | "hidden" | undefined;
268
+ backgroundColor: import("react-native").ColorValue | undefined;
269
+ borderBlockColor?: import("react-native").ColorValue | undefined;
270
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
271
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
272
+ borderBottomColor?: import("react-native").ColorValue | undefined;
273
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
274
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
275
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
276
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
277
+ borderColor: import("react-native").ColorValue;
278
+ borderCurve?: "circular" | "continuous" | undefined;
279
+ borderEndColor?: import("react-native").ColorValue | undefined;
280
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
281
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
282
+ borderLeftColor?: import("react-native").ColorValue | undefined;
283
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
284
+ borderRightColor?: import("react-native").ColorValue | undefined;
285
+ borderStartColor?: import("react-native").ColorValue | undefined;
286
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
287
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
288
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
289
+ borderTopColor?: import("react-native").ColorValue | undefined;
290
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
291
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
292
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
293
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
294
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
295
+ elevation?: number | undefined;
296
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
297
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
298
+ alignItems?: import("react-native").FlexAlignType | undefined;
299
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
300
+ aspectRatio?: number | string | undefined;
301
+ borderBottomWidth?: number | undefined;
302
+ borderEndWidth?: number | undefined;
303
+ borderLeftWidth?: number | undefined;
304
+ borderRightWidth?: number | undefined;
305
+ borderStartWidth?: number | undefined;
306
+ borderTopWidth?: number | undefined;
307
+ borderWidth?: number | undefined;
308
+ bottom?: DimensionValue | undefined;
309
+ display?: "none" | "flex" | undefined;
310
+ end?: DimensionValue | undefined;
311
+ flex?: number | undefined;
312
+ flexBasis?: DimensionValue | undefined;
313
+ flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
314
+ rowGap?: number | undefined;
315
+ gap?: number | undefined;
316
+ columnGap?: number | undefined;
317
+ flexGrow?: number | undefined;
318
+ flexShrink?: number | undefined;
319
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
320
+ height?: DimensionValue | undefined;
321
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
322
+ left?: DimensionValue | undefined;
323
+ margin?: DimensionValue | undefined;
324
+ marginBottom?: DimensionValue | undefined;
325
+ marginEnd?: DimensionValue | undefined;
326
+ marginHorizontal?: DimensionValue | undefined;
327
+ marginLeft?: DimensionValue | undefined;
328
+ marginRight?: DimensionValue | undefined;
329
+ marginStart?: DimensionValue | undefined;
330
+ marginTop?: DimensionValue | undefined;
331
+ marginVertical?: DimensionValue | undefined;
332
+ maxHeight?: DimensionValue | undefined;
333
+ maxWidth?: DimensionValue | undefined;
334
+ minHeight?: DimensionValue | undefined;
335
+ minWidth?: DimensionValue | undefined;
336
+ overflow?: "visible" | "hidden" | "scroll" | undefined;
337
+ padding?: DimensionValue | undefined;
338
+ paddingBottom?: DimensionValue | undefined;
339
+ paddingEnd?: DimensionValue | undefined;
340
+ paddingHorizontal?: DimensionValue | undefined;
341
+ paddingLeft?: DimensionValue | undefined;
342
+ paddingRight?: DimensionValue | undefined;
343
+ paddingStart?: DimensionValue | undefined;
344
+ paddingTop?: DimensionValue | undefined;
345
+ paddingVertical?: DimensionValue | undefined;
346
+ position?: "absolute" | "relative" | undefined;
347
+ right?: DimensionValue | undefined;
348
+ start?: DimensionValue | undefined;
349
+ top?: DimensionValue | undefined;
350
+ width?: DimensionValue | undefined;
351
+ zIndex?: number | undefined;
352
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
353
+ shadowColor?: import("react-native").ColorValue | undefined;
354
+ shadowOffset?: Readonly<{
355
+ width: number;
356
+ height: number;
357
+ }> | undefined;
358
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
359
+ shadowRadius?: number | undefined;
360
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
361
+ transformMatrix?: Array<number> | undefined;
362
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
363
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
364
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
365
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
366
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
367
+ textAlignVertical?: "auto" | "top" | "bottom" | "center" | undefined;
368
+ verticalAlign?: "auto" | "top" | "bottom" | "middle" | undefined;
369
+ includeFontPadding?: boolean | undefined;
370
+ };
371
+ confirmButton: {
372
+ color: import("react-native").ColorValue;
373
+ fontFamily?: string | undefined;
374
+ fontSize?: number | undefined;
375
+ fontStyle?: "normal" | "italic" | undefined;
376
+ fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
377
+ letterSpacing?: number | undefined;
378
+ lineHeight?: number | undefined;
379
+ textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
380
+ textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
381
+ textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | undefined;
382
+ textDecorationColor?: import("react-native").ColorValue | undefined;
383
+ textShadowColor?: import("react-native").ColorValue | undefined;
384
+ textShadowOffset?: {
385
+ width: number;
386
+ height: number;
387
+ } | undefined;
388
+ textShadowRadius?: number | undefined;
389
+ textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
390
+ testID?: string | undefined;
391
+ fontVariant?: import("react-native").FontVariant[] | undefined;
392
+ writingDirection?: "auto" | "ltr" | "rtl" | undefined;
393
+ backfaceVisibility?: "visible" | "hidden" | undefined;
394
+ backgroundColor: import("react-native").ColorValue | undefined;
395
+ borderBlockColor?: import("react-native").ColorValue | undefined;
396
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
397
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
398
+ borderBottomColor?: import("react-native").ColorValue | undefined;
399
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
400
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
401
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
402
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
403
+ borderColor: import("react-native").ColorValue;
404
+ borderCurve?: "circular" | "continuous" | undefined;
405
+ borderEndColor?: import("react-native").ColorValue | undefined;
406
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
407
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
408
+ borderLeftColor?: import("react-native").ColorValue | undefined;
409
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
410
+ borderRightColor?: import("react-native").ColorValue | undefined;
411
+ borderStartColor?: import("react-native").ColorValue | undefined;
412
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
413
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
414
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
415
+ borderTopColor?: import("react-native").ColorValue | undefined;
416
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
417
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
418
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
419
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
420
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
421
+ elevation?: number | undefined;
422
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
423
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
424
+ alignItems?: import("react-native").FlexAlignType | undefined;
425
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
426
+ aspectRatio?: number | string | undefined;
427
+ borderBottomWidth?: number | undefined;
428
+ borderEndWidth?: number | undefined;
429
+ borderLeftWidth?: number | undefined;
430
+ borderRightWidth?: number | undefined;
431
+ borderStartWidth?: number | undefined;
432
+ borderTopWidth?: number | undefined;
433
+ borderWidth?: number | undefined;
434
+ bottom?: DimensionValue | undefined;
435
+ display?: "none" | "flex" | undefined;
436
+ end?: DimensionValue | undefined;
437
+ flex?: number | undefined;
438
+ flexBasis?: DimensionValue | undefined;
439
+ flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
440
+ rowGap?: number | undefined;
441
+ gap?: number | undefined;
442
+ columnGap?: number | undefined;
443
+ flexGrow?: number | undefined;
444
+ flexShrink?: number | undefined;
445
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
446
+ height?: DimensionValue | undefined;
447
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
448
+ left?: DimensionValue | undefined;
449
+ margin?: DimensionValue | undefined;
450
+ marginBottom?: DimensionValue | undefined;
451
+ marginEnd?: DimensionValue | undefined;
452
+ marginHorizontal?: DimensionValue | undefined;
453
+ marginLeft?: DimensionValue | undefined;
454
+ marginRight?: DimensionValue | undefined;
455
+ marginStart?: DimensionValue | undefined;
456
+ marginTop?: DimensionValue | undefined;
457
+ marginVertical?: DimensionValue | undefined;
458
+ maxHeight?: DimensionValue | undefined;
459
+ maxWidth?: DimensionValue | undefined;
460
+ minHeight?: DimensionValue | undefined;
461
+ minWidth?: DimensionValue | undefined;
462
+ overflow?: "visible" | "hidden" | "scroll" | undefined;
463
+ padding?: DimensionValue | undefined;
464
+ paddingBottom?: DimensionValue | undefined;
465
+ paddingEnd?: DimensionValue | undefined;
466
+ paddingHorizontal?: DimensionValue | undefined;
467
+ paddingLeft?: DimensionValue | undefined;
468
+ paddingRight?: DimensionValue | undefined;
469
+ paddingStart?: DimensionValue | undefined;
470
+ paddingTop?: DimensionValue | undefined;
471
+ paddingVertical?: DimensionValue | undefined;
472
+ position?: "absolute" | "relative" | undefined;
473
+ right?: DimensionValue | undefined;
474
+ start?: DimensionValue | undefined;
475
+ top?: DimensionValue | undefined;
476
+ width?: DimensionValue | undefined;
477
+ zIndex?: number | undefined;
478
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
479
+ shadowColor?: import("react-native").ColorValue | undefined;
480
+ shadowOffset?: Readonly<{
481
+ width: number;
482
+ height: number;
483
+ }> | undefined;
484
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
485
+ shadowRadius?: number | undefined;
486
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
487
+ transformMatrix?: Array<number> | undefined;
488
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
489
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
490
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
491
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
492
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
493
+ textAlignVertical?: "auto" | "top" | "bottom" | "center" | undefined;
494
+ verticalAlign?: "auto" | "top" | "bottom" | "middle" | undefined;
495
+ includeFontPadding?: boolean | undefined;
496
+ };
497
+ container: {
498
+ backfaceVisibility?: "visible" | "hidden" | undefined;
499
+ backgroundColor?: import("react-native").ColorValue | undefined;
500
+ borderBlockColor?: import("react-native").ColorValue | undefined;
501
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
502
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
503
+ borderBottomColor?: import("react-native").ColorValue | undefined;
504
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
505
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
506
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
507
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
508
+ borderColor?: import("react-native").ColorValue | undefined;
509
+ borderCurve?: "circular" | "continuous" | undefined;
510
+ borderEndColor?: import("react-native").ColorValue | undefined;
511
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
512
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
513
+ borderLeftColor?: import("react-native").ColorValue | undefined;
514
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
515
+ borderRightColor?: import("react-native").ColorValue | undefined;
516
+ borderStartColor?: import("react-native").ColorValue | undefined;
517
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
518
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
519
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
520
+ borderTopColor?: import("react-native").ColorValue | undefined;
521
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
522
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
523
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
524
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
525
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
526
+ elevation?: number | undefined;
527
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
528
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
529
+ alignItems?: import("react-native").FlexAlignType | undefined;
530
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
531
+ aspectRatio?: number | string | undefined;
532
+ borderBottomWidth?: number | undefined;
533
+ borderEndWidth?: number | undefined;
534
+ borderLeftWidth?: number | undefined;
535
+ borderRightWidth?: number | undefined;
536
+ borderStartWidth?: number | undefined;
537
+ borderTopWidth?: number | undefined;
538
+ borderWidth?: number | undefined;
539
+ bottom?: DimensionValue | undefined;
540
+ display?: "none" | "flex" | undefined;
541
+ end?: DimensionValue | undefined;
542
+ flex?: number | undefined;
543
+ flexBasis?: DimensionValue | undefined;
544
+ flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
545
+ rowGap?: number | undefined;
546
+ gap?: number | undefined;
547
+ columnGap?: number | undefined;
548
+ flexGrow?: number | undefined;
549
+ flexShrink?: number | undefined;
550
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
551
+ height?: DimensionValue | undefined;
552
+ justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
553
+ left?: DimensionValue | undefined;
554
+ margin?: DimensionValue | undefined;
555
+ marginBottom?: DimensionValue | undefined;
556
+ marginEnd?: DimensionValue | undefined;
557
+ marginHorizontal?: DimensionValue | undefined;
558
+ marginLeft?: DimensionValue | undefined;
559
+ marginRight?: DimensionValue | undefined;
560
+ marginStart?: DimensionValue | undefined;
561
+ marginTop?: DimensionValue | undefined;
562
+ marginVertical?: DimensionValue | undefined;
563
+ maxHeight?: DimensionValue | undefined;
564
+ maxWidth?: DimensionValue | undefined;
565
+ minHeight?: DimensionValue | undefined;
566
+ minWidth?: DimensionValue | undefined;
567
+ overflow: "visible" | "hidden" | "scroll";
568
+ padding?: DimensionValue | undefined;
569
+ paddingBottom?: DimensionValue | undefined;
570
+ paddingEnd?: DimensionValue | undefined;
571
+ paddingHorizontal?: DimensionValue | undefined;
572
+ paddingLeft?: DimensionValue | undefined;
573
+ paddingRight?: DimensionValue | undefined;
574
+ paddingStart?: DimensionValue | undefined;
575
+ paddingTop?: DimensionValue | undefined;
576
+ paddingVertical?: DimensionValue | undefined;
577
+ position?: "absolute" | "relative" | undefined;
578
+ right?: DimensionValue | undefined;
579
+ start?: DimensionValue | undefined;
580
+ top?: DimensionValue | undefined;
581
+ width?: DimensionValue | undefined;
582
+ zIndex?: number | undefined;
583
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
584
+ shadowColor?: import("react-native").ColorValue | undefined;
585
+ shadowOffset?: Readonly<{
586
+ width: number;
587
+ height: number;
588
+ }> | undefined;
589
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
590
+ shadowRadius?: number | undefined;
591
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
592
+ transformMatrix?: Array<number> | undefined;
593
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
594
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
595
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
596
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
597
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
598
+ };
599
+ contentContainer: {
600
+ backfaceVisibility?: "visible" | "hidden" | undefined;
601
+ backgroundColor: import("react-native").ColorValue;
602
+ borderBlockColor?: import("react-native").ColorValue | undefined;
603
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
604
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
605
+ borderBottomColor?: import("react-native").ColorValue | undefined;
606
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
607
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
608
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
609
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
610
+ borderColor?: import("react-native").ColorValue | undefined;
611
+ borderCurve?: "circular" | "continuous" | undefined;
612
+ borderEndColor?: import("react-native").ColorValue | undefined;
613
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
614
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
615
+ borderLeftColor?: import("react-native").ColorValue | undefined;
616
+ borderRadius: import("react-native").AnimatableNumericValue;
617
+ borderRightColor?: import("react-native").ColorValue | undefined;
618
+ borderStartColor?: import("react-native").ColorValue | undefined;
619
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
620
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
621
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
622
+ borderTopColor?: import("react-native").ColorValue | undefined;
623
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
624
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
625
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
626
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
627
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
628
+ elevation?: number | undefined;
629
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
630
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
631
+ alignItems: import("react-native").FlexAlignType;
632
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
633
+ aspectRatio?: number | string | undefined;
634
+ borderBottomWidth?: number | undefined;
635
+ borderEndWidth?: number | undefined;
636
+ borderLeftWidth?: number | undefined;
637
+ borderRightWidth?: number | undefined;
638
+ borderStartWidth?: number | undefined;
639
+ borderTopWidth?: number | undefined;
640
+ borderWidth?: number | undefined;
641
+ bottom?: DimensionValue | undefined;
642
+ display?: "none" | "flex" | undefined;
643
+ end?: DimensionValue | undefined;
644
+ flex?: number | undefined;
645
+ flexBasis?: DimensionValue | undefined;
646
+ flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
647
+ rowGap?: number | undefined;
648
+ gap?: number | undefined;
649
+ columnGap?: number | undefined;
650
+ flexGrow?: number | undefined;
651
+ flexShrink?: number | undefined;
652
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
653
+ height?: DimensionValue | undefined;
654
+ justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
655
+ left?: DimensionValue | undefined;
656
+ margin?: DimensionValue | undefined;
657
+ marginBottom?: DimensionValue | undefined;
658
+ marginEnd?: DimensionValue | undefined;
659
+ marginHorizontal?: DimensionValue | undefined;
660
+ marginLeft?: DimensionValue | undefined;
661
+ marginRight?: DimensionValue | undefined;
662
+ marginStart?: DimensionValue | undefined;
663
+ marginTop?: DimensionValue | undefined;
664
+ marginVertical?: DimensionValue | undefined;
665
+ maxHeight?: DimensionValue | undefined;
666
+ maxWidth?: DimensionValue | undefined;
667
+ minHeight?: DimensionValue | undefined;
668
+ minWidth?: DimensionValue | undefined;
669
+ overflow: "visible" | "hidden" | "scroll";
670
+ padding?: DimensionValue | undefined;
671
+ paddingBottom?: DimensionValue | undefined;
672
+ paddingEnd?: DimensionValue | undefined;
673
+ paddingHorizontal: DimensionValue;
674
+ paddingLeft?: DimensionValue | undefined;
675
+ paddingRight?: DimensionValue | undefined;
676
+ paddingStart?: DimensionValue | undefined;
677
+ paddingTop?: DimensionValue | undefined;
678
+ paddingVertical?: DimensionValue | undefined;
679
+ position?: "absolute" | "relative" | undefined;
680
+ right?: DimensionValue | undefined;
681
+ start?: DimensionValue | undefined;
682
+ top?: DimensionValue | undefined;
683
+ width: DimensionValue;
684
+ zIndex?: number | undefined;
685
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
686
+ shadowColor?: import("react-native").ColorValue | undefined;
687
+ shadowOffset?: Readonly<{
688
+ width: number;
689
+ height: number;
690
+ }> | undefined;
691
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
692
+ shadowRadius?: number | undefined;
693
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
694
+ transformMatrix?: Array<number> | undefined;
695
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
696
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
697
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
698
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
699
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
700
+ };
701
+ modalTitle: {
702
+ color: import("react-native").ColorValue;
703
+ fontFamily?: string | undefined;
704
+ fontSize: number;
705
+ fontStyle?: "normal" | "italic" | undefined;
706
+ fontWeight: "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
707
+ letterSpacing?: number | undefined;
708
+ lineHeight?: number | undefined;
709
+ textAlign?: "auto" | "left" | "right" | "center" | "justify" | undefined;
710
+ textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
711
+ textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | undefined;
712
+ textDecorationColor?: import("react-native").ColorValue | undefined;
713
+ textShadowColor?: import("react-native").ColorValue | undefined;
714
+ textShadowOffset?: {
715
+ width: number;
716
+ height: number;
717
+ } | undefined;
718
+ textShadowRadius?: number | undefined;
719
+ textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
720
+ testID?: string | undefined;
721
+ fontVariant?: import("react-native").FontVariant[] | undefined;
722
+ writingDirection?: "auto" | "ltr" | "rtl" | undefined;
723
+ backfaceVisibility?: "visible" | "hidden" | undefined;
724
+ backgroundColor?: import("react-native").ColorValue | undefined;
725
+ borderBlockColor?: import("react-native").ColorValue | undefined;
726
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
727
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
728
+ borderBottomColor?: import("react-native").ColorValue | undefined;
729
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
730
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
731
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
732
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
733
+ borderColor?: import("react-native").ColorValue | undefined;
734
+ borderCurve?: "circular" | "continuous" | undefined;
735
+ borderEndColor?: import("react-native").ColorValue | undefined;
736
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
737
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
738
+ borderLeftColor?: import("react-native").ColorValue | undefined;
739
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
740
+ borderRightColor?: import("react-native").ColorValue | undefined;
741
+ borderStartColor?: import("react-native").ColorValue | undefined;
742
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
743
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
744
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
745
+ borderTopColor?: import("react-native").ColorValue | undefined;
746
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
747
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
748
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
749
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
750
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
751
+ elevation?: number | undefined;
752
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
753
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
754
+ alignItems?: import("react-native").FlexAlignType | undefined;
755
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
756
+ aspectRatio?: number | string | undefined;
757
+ borderBottomWidth?: number | undefined;
758
+ borderEndWidth?: number | undefined;
759
+ borderLeftWidth?: number | undefined;
760
+ borderRightWidth?: number | undefined;
761
+ borderStartWidth?: number | undefined;
762
+ borderTopWidth?: number | undefined;
763
+ borderWidth?: number | undefined;
764
+ bottom?: DimensionValue | undefined;
765
+ display?: "none" | "flex" | undefined;
766
+ end?: DimensionValue | undefined;
767
+ flex?: number | undefined;
768
+ flexBasis?: DimensionValue | undefined;
769
+ flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
770
+ rowGap?: number | undefined;
771
+ gap?: number | undefined;
772
+ columnGap?: number | undefined;
773
+ flexGrow?: number | undefined;
774
+ flexShrink?: number | undefined;
775
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
776
+ height?: DimensionValue | undefined;
777
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
778
+ left?: DimensionValue | undefined;
779
+ margin?: DimensionValue | undefined;
780
+ marginBottom: DimensionValue;
781
+ marginEnd?: DimensionValue | undefined;
782
+ marginHorizontal?: DimensionValue | undefined;
783
+ marginLeft?: DimensionValue | undefined;
784
+ marginRight?: DimensionValue | undefined;
785
+ marginStart?: DimensionValue | undefined;
786
+ marginTop: DimensionValue;
787
+ marginVertical?: DimensionValue | undefined;
788
+ maxHeight?: DimensionValue | undefined;
789
+ maxWidth?: DimensionValue | undefined;
790
+ minHeight?: DimensionValue | undefined;
791
+ minWidth?: DimensionValue | undefined;
792
+ overflow?: "visible" | "hidden" | "scroll" | undefined;
793
+ padding?: DimensionValue | undefined;
794
+ paddingBottom?: DimensionValue | undefined;
795
+ paddingEnd?: DimensionValue | undefined;
796
+ paddingHorizontal?: DimensionValue | undefined;
797
+ paddingLeft?: DimensionValue | undefined;
798
+ paddingRight?: DimensionValue | undefined;
799
+ paddingStart?: DimensionValue | undefined;
800
+ paddingTop?: DimensionValue | undefined;
801
+ paddingVertical?: DimensionValue | undefined;
802
+ position?: "absolute" | "relative" | undefined;
803
+ right?: DimensionValue | undefined;
804
+ start?: DimensionValue | undefined;
805
+ top?: DimensionValue | undefined;
806
+ width?: DimensionValue | undefined;
807
+ zIndex?: number | undefined;
808
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
809
+ shadowColor?: import("react-native").ColorValue | undefined;
810
+ shadowOffset?: Readonly<{
811
+ width: number;
812
+ height: number;
813
+ }> | undefined;
814
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
815
+ shadowRadius?: number | undefined;
816
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
817
+ transformMatrix?: Array<number> | undefined;
818
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
819
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
820
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
821
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
822
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
823
+ textAlignVertical?: "auto" | "top" | "bottom" | "center" | undefined;
824
+ verticalAlign?: "auto" | "top" | "bottom" | "middle" | undefined;
825
+ includeFontPadding?: boolean | undefined;
826
+ };
827
+ timerPickerStyles: {
828
+ pickerContainer: {
829
+ backfaceVisibility?: "visible" | "hidden" | undefined;
830
+ backgroundColor?: string | undefined;
831
+ borderBlockColor?: import("react-native").ColorValue | undefined;
832
+ borderBlockEndColor?: import("react-native").ColorValue | undefined;
833
+ borderBlockStartColor?: import("react-native").ColorValue | undefined;
834
+ borderBottomColor?: import("react-native").ColorValue | undefined;
835
+ borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
836
+ borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
837
+ borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
838
+ borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
839
+ borderColor?: import("react-native").ColorValue | undefined;
840
+ borderCurve?: "circular" | "continuous" | undefined;
841
+ borderEndColor?: import("react-native").ColorValue | undefined;
842
+ borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
843
+ borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
844
+ borderLeftColor?: import("react-native").ColorValue | undefined;
845
+ borderRadius?: import("react-native").AnimatableNumericValue | undefined;
846
+ borderRightColor?: import("react-native").ColorValue | undefined;
847
+ borderStartColor?: import("react-native").ColorValue | undefined;
848
+ borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
849
+ borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
850
+ borderStyle?: "solid" | "dotted" | "dashed" | undefined;
851
+ borderTopColor?: import("react-native").ColorValue | undefined;
852
+ borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
853
+ borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
854
+ borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
855
+ borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
856
+ opacity?: import("react-native").AnimatableNumericValue | undefined;
857
+ elevation?: number | undefined;
858
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
859
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
860
+ alignItems?: import("react-native").FlexAlignType | undefined;
861
+ alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
862
+ aspectRatio?: number | string | undefined;
863
+ borderBottomWidth?: number | undefined;
864
+ borderEndWidth?: number | undefined;
865
+ borderLeftWidth?: number | undefined;
866
+ borderRightWidth?: number | undefined;
867
+ borderStartWidth?: number | undefined;
868
+ borderTopWidth?: number | undefined;
869
+ borderWidth?: number | undefined;
870
+ bottom?: DimensionValue | undefined;
871
+ display?: "none" | "flex" | undefined;
872
+ end?: DimensionValue | undefined;
873
+ flex?: number | undefined;
874
+ flexBasis?: DimensionValue | undefined;
875
+ flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
876
+ rowGap?: number | undefined;
877
+ gap?: number | undefined;
878
+ columnGap?: number | undefined;
879
+ flexGrow?: number | undefined;
880
+ flexShrink?: number | undefined;
881
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
882
+ height?: DimensionValue | undefined;
883
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
884
+ left?: DimensionValue | undefined;
885
+ margin?: DimensionValue | undefined;
886
+ marginBottom?: DimensionValue | undefined;
887
+ marginEnd?: DimensionValue | undefined;
888
+ marginHorizontal?: DimensionValue | undefined;
889
+ marginLeft?: DimensionValue | undefined;
890
+ marginRight: DimensionValue;
891
+ marginStart?: DimensionValue | undefined;
892
+ marginTop?: DimensionValue | undefined;
893
+ marginVertical?: DimensionValue | undefined;
894
+ maxHeight?: DimensionValue | undefined;
895
+ maxWidth?: DimensionValue | undefined;
896
+ minHeight?: DimensionValue | undefined;
897
+ minWidth?: DimensionValue | undefined;
898
+ overflow?: "visible" | "hidden" | "scroll" | undefined;
899
+ padding?: DimensionValue | undefined;
900
+ paddingBottom?: DimensionValue | undefined;
901
+ paddingEnd?: DimensionValue | undefined;
902
+ paddingHorizontal?: DimensionValue | undefined;
903
+ paddingLeft?: DimensionValue | undefined;
904
+ paddingRight?: DimensionValue | undefined;
905
+ paddingStart?: DimensionValue | undefined;
906
+ paddingTop: DimensionValue;
907
+ paddingVertical?: DimensionValue | undefined;
908
+ position?: "absolute" | "relative" | undefined;
909
+ right?: DimensionValue | undefined;
910
+ start?: DimensionValue | undefined;
911
+ top?: DimensionValue | undefined;
912
+ width?: DimensionValue | undefined;
913
+ zIndex?: number | undefined;
914
+ direction?: "inherit" | "ltr" | "rtl" | undefined;
915
+ shadowColor?: import("react-native").ColorValue | undefined;
916
+ shadowOffset?: Readonly<{
917
+ width: number;
918
+ height: number;
919
+ }> | undefined;
920
+ shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
921
+ shadowRadius?: number | undefined;
922
+ transform?: (import("react-native").PerpectiveTransform | import("react-native").RotateTransform | import("react-native").RotateXTransform | import("react-native").RotateYTransform | import("react-native").RotateZTransform | import("react-native").ScaleTransform | import("react-native").ScaleXTransform | import("react-native").ScaleYTransform | import("react-native").TranslateXTransform | import("react-native").TranslateYTransform | import("react-native").SkewXTransform | import("react-native").SkewYTransform | import("react-native").MatrixTransform)[] | undefined;
923
+ transformMatrix?: Array<number> | undefined;
924
+ rotation?: import("react-native").AnimatableNumericValue | undefined;
925
+ scaleX?: import("react-native").AnimatableNumericValue | undefined;
926
+ scaleY?: import("react-native").AnimatableNumericValue | undefined;
927
+ translateX?: import("react-native").AnimatableNumericValue | undefined;
928
+ translateY?: import("react-native").AnimatableNumericValue | undefined;
929
+ };
930
+ backgroundColor?: string;
931
+ disabledPickerContainer?: ViewStyle;
932
+ disabledPickerItem?: TextStyle;
933
+ durationScrollFlatList?: ViewStyle;
934
+ durationScrollFlatListContainer?: ViewStyle;
935
+ durationScrollFlatListContentContainer?: ViewStyle;
936
+ labelOffsetPercentage?: number;
937
+ pickerAmPmContainer?: ViewStyle;
938
+ pickerAmPmLabel?: TextStyle;
939
+ pickerColumnWidth?: import("../TimerPicker/styles").PerColumnValue;
940
+ pickerGradientOverlay?: ViewStyle;
941
+ pickerItem?: TextStyle;
942
+ pickerItemContainer?: ViewStyle & {
943
+ height?: number;
944
+ };
945
+ pickerLabel?: TextStyle;
946
+ pickerLabelContainer?: ViewStyle;
947
+ pickerLabelGap?: import("../TimerPicker/styles").PerColumnValue;
948
+ selectedPickerItem?: TextStyle;
949
+ text?: TextStyle;
950
+ theme?: "light" | "dark";
951
+ };
952
+ };