react-native-timer-picker
Version:
A simple, flexible, performant duration picker for React Native apps 🔥 Great for timers, alarms and duration inputs ⏰🕰️⏳ Includes iOS-style haptic and audio feedback 🍏
790 lines • 60.3 kB
TypeScript
import type { DimensionValue, TextStyle, ViewStyle } from "react-native";
import type { CustomTimerPickerStyles } from "../TimerPicker/styles";
export interface CustomTimerPickerModalStyles extends CustomTimerPickerStyles {
button?: TextStyle;
buttonContainer?: ViewStyle;
cancelButton?: TextStyle;
confirmButton?: TextStyle;
container?: ViewStyle;
contentContainer?: ViewStyle;
modalTitle?: TextStyle;
}
export declare const generateStyles: (customStyles: CustomTimerPickerModalStyles | undefined, variables?: {
hasModalTitle: boolean;
}) => {
container: {
backfaceVisibility?: "visible" | "hidden" | undefined;
backgroundColor?: import("react-native").ColorValue | undefined;
borderBlockColor?: import("react-native").ColorValue | undefined;
borderBlockEndColor?: import("react-native").ColorValue | undefined;
borderBlockStartColor?: import("react-native").ColorValue | undefined;
borderBottomColor?: import("react-native").ColorValue | undefined;
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderColor?: import("react-native").ColorValue | undefined;
borderCurve?: "circular" | "continuous" | undefined;
borderEndColor?: import("react-native").ColorValue | undefined;
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderLeftColor?: import("react-native").ColorValue | undefined;
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
borderRightColor?: import("react-native").ColorValue | undefined;
borderStartColor?: import("react-native").ColorValue | undefined;
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
borderTopColor?: import("react-native").ColorValue | undefined;
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
opacity?: import("react-native").AnimatableNumericValue | undefined;
elevation?: number | undefined;
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
alignItems?: import("react-native").FlexAlignType | undefined;
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
aspectRatio?: string | number | undefined;
borderBottomWidth?: number | undefined;
borderEndWidth?: number | undefined;
borderLeftWidth?: number | undefined;
borderRightWidth?: number | undefined;
borderStartWidth?: number | undefined;
borderTopWidth?: number | undefined;
borderWidth?: number | undefined;
bottom?: DimensionValue | undefined;
display?: "none" | "flex" | undefined;
end?: DimensionValue | undefined;
flex?: number | undefined;
flexBasis?: DimensionValue | undefined;
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
rowGap?: number | undefined;
gap?: number | undefined;
columnGap?: number | undefined;
flexGrow?: number | undefined;
flexShrink?: number | undefined;
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
height?: DimensionValue | undefined;
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
left?: DimensionValue | undefined;
margin?: DimensionValue | undefined;
marginBottom?: DimensionValue | undefined;
marginEnd?: DimensionValue | undefined;
marginHorizontal?: DimensionValue | undefined;
marginLeft?: DimensionValue | undefined;
marginRight?: DimensionValue | undefined;
marginStart?: DimensionValue | undefined;
marginTop?: DimensionValue | undefined;
marginVertical?: DimensionValue | undefined;
maxHeight?: DimensionValue | undefined;
maxWidth?: DimensionValue | undefined;
minHeight?: DimensionValue | undefined;
minWidth?: DimensionValue | undefined;
overflow: "visible" | "hidden" | "scroll";
padding?: DimensionValue | undefined;
paddingBottom?: DimensionValue | undefined;
paddingEnd?: DimensionValue | undefined;
paddingHorizontal?: DimensionValue | undefined;
paddingLeft?: DimensionValue | undefined;
paddingRight?: DimensionValue | undefined;
paddingStart?: DimensionValue | undefined;
paddingTop?: DimensionValue | undefined;
paddingVertical?: DimensionValue | undefined;
position?: "absolute" | "relative" | undefined;
right?: DimensionValue | undefined;
start?: DimensionValue | undefined;
top?: DimensionValue | undefined;
width?: DimensionValue | undefined;
zIndex?: number | undefined;
direction?: "inherit" | "ltr" | "rtl" | undefined;
shadowColor?: import("react-native").ColorValue | undefined;
shadowOffset?: Readonly<{
width: number;
height: number;
}> | undefined;
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
shadowRadius?: number | undefined;
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;
transformMatrix?: number[] | undefined;
rotation?: import("react-native").AnimatableNumericValue | undefined;
scaleX?: import("react-native").AnimatableNumericValue | undefined;
scaleY?: import("react-native").AnimatableNumericValue | undefined;
translateX?: import("react-native").AnimatableNumericValue | undefined;
translateY?: import("react-native").AnimatableNumericValue | undefined;
};
contentContainer: {
backfaceVisibility?: "visible" | "hidden" | undefined;
backgroundColor: import("react-native").ColorValue;
borderBlockColor?: import("react-native").ColorValue | undefined;
borderBlockEndColor?: import("react-native").ColorValue | undefined;
borderBlockStartColor?: import("react-native").ColorValue | undefined;
borderBottomColor?: import("react-native").ColorValue | undefined;
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderColor?: import("react-native").ColorValue | undefined;
borderCurve?: "circular" | "continuous" | undefined;
borderEndColor?: import("react-native").ColorValue | undefined;
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderLeftColor?: import("react-native").ColorValue | undefined;
borderRadius: import("react-native").AnimatableNumericValue;
borderRightColor?: import("react-native").ColorValue | undefined;
borderStartColor?: import("react-native").ColorValue | undefined;
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
borderTopColor?: import("react-native").ColorValue | undefined;
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
opacity?: import("react-native").AnimatableNumericValue | undefined;
elevation?: number | undefined;
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
alignItems: import("react-native").FlexAlignType;
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
aspectRatio?: string | number | undefined;
borderBottomWidth?: number | undefined;
borderEndWidth?: number | undefined;
borderLeftWidth?: number | undefined;
borderRightWidth?: number | undefined;
borderStartWidth?: number | undefined;
borderTopWidth?: number | undefined;
borderWidth?: number | undefined;
bottom?: DimensionValue | undefined;
display?: "none" | "flex" | undefined;
end?: DimensionValue | undefined;
flex?: number | undefined;
flexBasis?: DimensionValue | undefined;
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
rowGap?: number | undefined;
gap?: number | undefined;
columnGap?: number | undefined;
flexGrow?: number | undefined;
flexShrink?: number | undefined;
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
height?: DimensionValue | undefined;
justifyContent: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
left?: DimensionValue | undefined;
margin?: DimensionValue | undefined;
marginBottom?: DimensionValue | undefined;
marginEnd?: DimensionValue | undefined;
marginHorizontal?: DimensionValue | undefined;
marginLeft?: DimensionValue | undefined;
marginRight?: DimensionValue | undefined;
marginStart?: DimensionValue | undefined;
marginTop?: DimensionValue | undefined;
marginVertical?: DimensionValue | undefined;
maxHeight?: DimensionValue | undefined;
maxWidth?: DimensionValue | undefined;
minHeight?: DimensionValue | undefined;
minWidth?: DimensionValue | undefined;
overflow: "visible" | "hidden" | "scroll";
padding?: DimensionValue | undefined;
paddingBottom?: DimensionValue | undefined;
paddingEnd?: DimensionValue | undefined;
paddingHorizontal: DimensionValue;
paddingLeft?: DimensionValue | undefined;
paddingRight?: DimensionValue | undefined;
paddingStart?: DimensionValue | undefined;
paddingTop?: DimensionValue | undefined;
paddingVertical?: DimensionValue | undefined;
position?: "absolute" | "relative" | undefined;
right?: DimensionValue | undefined;
start?: DimensionValue | undefined;
top?: DimensionValue | undefined;
width?: DimensionValue | undefined;
zIndex?: number | undefined;
direction?: "inherit" | "ltr" | "rtl" | undefined;
shadowColor?: import("react-native").ColorValue | undefined;
shadowOffset?: Readonly<{
width: number;
height: number;
}> | undefined;
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
shadowRadius?: number | undefined;
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;
transformMatrix?: number[] | undefined;
rotation?: import("react-native").AnimatableNumericValue | undefined;
scaleX?: import("react-native").AnimatableNumericValue | undefined;
scaleY?: import("react-native").AnimatableNumericValue | undefined;
translateX?: import("react-native").AnimatableNumericValue | undefined;
translateY?: import("react-native").AnimatableNumericValue | undefined;
};
buttonContainer: {
backfaceVisibility?: "visible" | "hidden" | undefined;
backgroundColor?: import("react-native").ColorValue | undefined;
borderBlockColor?: import("react-native").ColorValue | undefined;
borderBlockEndColor?: import("react-native").ColorValue | undefined;
borderBlockStartColor?: import("react-native").ColorValue | undefined;
borderBottomColor?: import("react-native").ColorValue | undefined;
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderColor?: import("react-native").ColorValue | undefined;
borderCurve?: "circular" | "continuous" | undefined;
borderEndColor?: import("react-native").ColorValue | undefined;
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderLeftColor?: import("react-native").ColorValue | undefined;
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
borderRightColor?: import("react-native").ColorValue | undefined;
borderStartColor?: import("react-native").ColorValue | undefined;
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
borderTopColor?: import("react-native").ColorValue | undefined;
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
opacity?: import("react-native").AnimatableNumericValue | undefined;
elevation?: number | undefined;
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
alignItems?: import("react-native").FlexAlignType | undefined;
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
aspectRatio?: string | number | undefined;
borderBottomWidth?: number | undefined;
borderEndWidth?: number | undefined;
borderLeftWidth?: number | undefined;
borderRightWidth?: number | undefined;
borderStartWidth?: number | undefined;
borderTopWidth?: number | undefined;
borderWidth?: number | undefined;
bottom?: DimensionValue | undefined;
display?: "none" | "flex" | undefined;
end?: DimensionValue | undefined;
flex?: number | undefined;
flexBasis?: DimensionValue | undefined;
flexDirection: "row" | "column" | "row-reverse" | "column-reverse";
rowGap?: number | undefined;
gap?: number | undefined;
columnGap?: number | undefined;
flexGrow?: number | undefined;
flexShrink?: number | undefined;
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
height?: DimensionValue | undefined;
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
left?: DimensionValue | undefined;
margin?: DimensionValue | undefined;
marginBottom: DimensionValue;
marginEnd?: DimensionValue | undefined;
marginHorizontal?: DimensionValue | undefined;
marginLeft?: DimensionValue | undefined;
marginRight?: DimensionValue | undefined;
marginStart?: DimensionValue | undefined;
marginTop: DimensionValue;
marginVertical?: DimensionValue | undefined;
maxHeight?: DimensionValue | undefined;
maxWidth?: DimensionValue | undefined;
minHeight?: DimensionValue | undefined;
minWidth?: DimensionValue | undefined;
overflow?: "visible" | "hidden" | "scroll" | undefined;
padding?: DimensionValue | undefined;
paddingBottom?: DimensionValue | undefined;
paddingEnd?: DimensionValue | undefined;
paddingHorizontal?: DimensionValue | undefined;
paddingLeft?: DimensionValue | undefined;
paddingRight?: DimensionValue | undefined;
paddingStart?: DimensionValue | undefined;
paddingTop?: DimensionValue | undefined;
paddingVertical?: DimensionValue | undefined;
position?: "absolute" | "relative" | undefined;
right?: DimensionValue | undefined;
start?: DimensionValue | undefined;
top?: DimensionValue | undefined;
width?: DimensionValue | undefined;
zIndex?: number | undefined;
direction?: "inherit" | "ltr" | "rtl" | undefined;
shadowColor?: import("react-native").ColorValue | undefined;
shadowOffset?: Readonly<{
width: number;
height: number;
}> | undefined;
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
shadowRadius?: number | undefined;
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;
transformMatrix?: number[] | undefined;
rotation?: import("react-native").AnimatableNumericValue | undefined;
scaleX?: import("react-native").AnimatableNumericValue | undefined;
scaleY?: import("react-native").AnimatableNumericValue | undefined;
translateX?: import("react-native").AnimatableNumericValue | undefined;
translateY?: import("react-native").AnimatableNumericValue | undefined;
};
button: {
color?: import("react-native").ColorValue | undefined;
fontFamily?: string | undefined;
fontSize: number;
fontStyle?: "normal" | "italic" | undefined;
fontWeight?: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
letterSpacing?: number | undefined;
lineHeight?: number | undefined;
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
textDecorationColor?: import("react-native").ColorValue | undefined;
textShadowColor?: import("react-native").ColorValue | undefined;
textShadowOffset?: {
width: number;
height: number;
} | undefined;
textShadowRadius?: number | undefined;
textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
testID?: string | undefined;
fontVariant?: import("react-native").FontVariant[] | undefined;
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
backfaceVisibility?: "visible" | "hidden" | undefined;
backgroundColor?: import("react-native").ColorValue | undefined;
borderBlockColor?: import("react-native").ColorValue | undefined;
borderBlockEndColor?: import("react-native").ColorValue | undefined;
borderBlockStartColor?: import("react-native").ColorValue | undefined;
borderBottomColor?: import("react-native").ColorValue | undefined;
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderColor?: import("react-native").ColorValue | undefined;
borderCurve?: "circular" | "continuous" | undefined;
borderEndColor?: import("react-native").ColorValue | undefined;
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderLeftColor?: import("react-native").ColorValue | undefined;
borderRadius: import("react-native").AnimatableNumericValue;
borderRightColor?: import("react-native").ColorValue | undefined;
borderStartColor?: import("react-native").ColorValue | undefined;
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
borderTopColor?: import("react-native").ColorValue | undefined;
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
opacity?: import("react-native").AnimatableNumericValue | undefined;
elevation?: number | undefined;
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
alignItems?: import("react-native").FlexAlignType | undefined;
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
aspectRatio?: string | number | undefined;
borderBottomWidth?: number | undefined;
borderEndWidth?: number | undefined;
borderLeftWidth?: number | undefined;
borderRightWidth?: number | undefined;
borderStartWidth?: number | undefined;
borderTopWidth?: number | undefined;
borderWidth: number;
bottom?: DimensionValue | undefined;
display?: "none" | "flex" | undefined;
end?: DimensionValue | undefined;
flex?: number | undefined;
flexBasis?: DimensionValue | undefined;
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
rowGap?: number | undefined;
gap?: number | undefined;
columnGap?: number | undefined;
flexGrow?: number | undefined;
flexShrink?: number | undefined;
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
height?: DimensionValue | undefined;
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
left?: DimensionValue | undefined;
margin?: DimensionValue | undefined;
marginBottom?: DimensionValue | undefined;
marginEnd?: DimensionValue | undefined;
marginHorizontal: DimensionValue;
marginLeft?: DimensionValue | undefined;
marginRight?: DimensionValue | undefined;
marginStart?: DimensionValue | undefined;
marginTop?: DimensionValue | undefined;
marginVertical?: DimensionValue | undefined;
maxHeight?: DimensionValue | undefined;
maxWidth?: DimensionValue | undefined;
minHeight?: DimensionValue | undefined;
minWidth?: DimensionValue | undefined;
overflow: "visible" | "hidden" | "scroll";
padding?: DimensionValue | undefined;
paddingBottom?: DimensionValue | undefined;
paddingEnd?: DimensionValue | undefined;
paddingHorizontal: DimensionValue;
paddingLeft?: DimensionValue | undefined;
paddingRight?: DimensionValue | undefined;
paddingStart?: DimensionValue | undefined;
paddingTop?: DimensionValue | undefined;
paddingVertical: DimensionValue;
position?: "absolute" | "relative" | undefined;
right?: DimensionValue | undefined;
start?: DimensionValue | undefined;
top?: DimensionValue | undefined;
width?: DimensionValue | undefined;
zIndex?: number | undefined;
direction?: "inherit" | "ltr" | "rtl" | undefined;
shadowColor?: import("react-native").ColorValue | undefined;
shadowOffset?: Readonly<{
width: number;
height: number;
}> | undefined;
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
shadowRadius?: number | undefined;
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;
transformMatrix?: number[] | undefined;
rotation?: import("react-native").AnimatableNumericValue | undefined;
scaleX?: import("react-native").AnimatableNumericValue | undefined;
scaleY?: import("react-native").AnimatableNumericValue | undefined;
translateX?: import("react-native").AnimatableNumericValue | undefined;
translateY?: import("react-native").AnimatableNumericValue | undefined;
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
includeFontPadding?: boolean | undefined;
};
cancelButton: {
color: import("react-native").ColorValue;
fontFamily?: string | undefined;
fontSize?: number | undefined;
fontStyle?: "normal" | "italic" | undefined;
fontWeight?: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
letterSpacing?: number | undefined;
lineHeight?: number | undefined;
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
textDecorationColor?: import("react-native").ColorValue | undefined;
textShadowColor?: import("react-native").ColorValue | undefined;
textShadowOffset?: {
width: number;
height: number;
} | undefined;
textShadowRadius?: number | undefined;
textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
testID?: string | undefined;
fontVariant?: import("react-native").FontVariant[] | undefined;
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
backfaceVisibility?: "visible" | "hidden" | undefined;
backgroundColor: import("react-native").ColorValue | undefined;
borderBlockColor?: import("react-native").ColorValue | undefined;
borderBlockEndColor?: import("react-native").ColorValue | undefined;
borderBlockStartColor?: import("react-native").ColorValue | undefined;
borderBottomColor?: import("react-native").ColorValue | undefined;
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderColor: import("react-native").ColorValue;
borderCurve?: "circular" | "continuous" | undefined;
borderEndColor?: import("react-native").ColorValue | undefined;
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderLeftColor?: import("react-native").ColorValue | undefined;
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
borderRightColor?: import("react-native").ColorValue | undefined;
borderStartColor?: import("react-native").ColorValue | undefined;
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
borderTopColor?: import("react-native").ColorValue | undefined;
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
opacity?: import("react-native").AnimatableNumericValue | undefined;
elevation?: number | undefined;
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
alignItems?: import("react-native").FlexAlignType | undefined;
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
aspectRatio?: string | number | undefined;
borderBottomWidth?: number | undefined;
borderEndWidth?: number | undefined;
borderLeftWidth?: number | undefined;
borderRightWidth?: number | undefined;
borderStartWidth?: number | undefined;
borderTopWidth?: number | undefined;
borderWidth?: number | undefined;
bottom?: DimensionValue | undefined;
display?: "none" | "flex" | undefined;
end?: DimensionValue | undefined;
flex?: number | undefined;
flexBasis?: DimensionValue | undefined;
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
rowGap?: number | undefined;
gap?: number | undefined;
columnGap?: number | undefined;
flexGrow?: number | undefined;
flexShrink?: number | undefined;
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
height?: DimensionValue | undefined;
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
left?: DimensionValue | undefined;
margin?: DimensionValue | undefined;
marginBottom?: DimensionValue | undefined;
marginEnd?: DimensionValue | undefined;
marginHorizontal?: DimensionValue | undefined;
marginLeft?: DimensionValue | undefined;
marginRight?: DimensionValue | undefined;
marginStart?: DimensionValue | undefined;
marginTop?: DimensionValue | undefined;
marginVertical?: DimensionValue | undefined;
maxHeight?: DimensionValue | undefined;
maxWidth?: DimensionValue | undefined;
minHeight?: DimensionValue | undefined;
minWidth?: DimensionValue | undefined;
overflow?: "visible" | "hidden" | "scroll" | undefined;
padding?: DimensionValue | undefined;
paddingBottom?: DimensionValue | undefined;
paddingEnd?: DimensionValue | undefined;
paddingHorizontal?: DimensionValue | undefined;
paddingLeft?: DimensionValue | undefined;
paddingRight?: DimensionValue | undefined;
paddingStart?: DimensionValue | undefined;
paddingTop?: DimensionValue | undefined;
paddingVertical?: DimensionValue | undefined;
position?: "absolute" | "relative" | undefined;
right?: DimensionValue | undefined;
start?: DimensionValue | undefined;
top?: DimensionValue | undefined;
width?: DimensionValue | undefined;
zIndex?: number | undefined;
direction?: "inherit" | "ltr" | "rtl" | undefined;
shadowColor?: import("react-native").ColorValue | undefined;
shadowOffset?: Readonly<{
width: number;
height: number;
}> | undefined;
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
shadowRadius?: number | undefined;
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;
transformMatrix?: number[] | undefined;
rotation?: import("react-native").AnimatableNumericValue | undefined;
scaleX?: import("react-native").AnimatableNumericValue | undefined;
scaleY?: import("react-native").AnimatableNumericValue | undefined;
translateX?: import("react-native").AnimatableNumericValue | undefined;
translateY?: import("react-native").AnimatableNumericValue | undefined;
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
includeFontPadding?: boolean | undefined;
};
confirmButton: {
color: import("react-native").ColorValue;
fontFamily?: string | undefined;
fontSize?: number | undefined;
fontStyle?: "normal" | "italic" | undefined;
fontWeight?: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | undefined;
letterSpacing?: number | undefined;
lineHeight?: number | undefined;
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
textDecorationColor?: import("react-native").ColorValue | undefined;
textShadowColor?: import("react-native").ColorValue | undefined;
textShadowOffset?: {
width: number;
height: number;
} | undefined;
textShadowRadius?: number | undefined;
textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
testID?: string | undefined;
fontVariant?: import("react-native").FontVariant[] | undefined;
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
backfaceVisibility?: "visible" | "hidden" | undefined;
backgroundColor: import("react-native").ColorValue | undefined;
borderBlockColor?: import("react-native").ColorValue | undefined;
borderBlockEndColor?: import("react-native").ColorValue | undefined;
borderBlockStartColor?: import("react-native").ColorValue | undefined;
borderBottomColor?: import("react-native").ColorValue | undefined;
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderColor: import("react-native").ColorValue;
borderCurve?: "circular" | "continuous" | undefined;
borderEndColor?: import("react-native").ColorValue | undefined;
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderLeftColor?: import("react-native").ColorValue | undefined;
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
borderRightColor?: import("react-native").ColorValue | undefined;
borderStartColor?: import("react-native").ColorValue | undefined;
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
borderTopColor?: import("react-native").ColorValue | undefined;
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
opacity?: import("react-native").AnimatableNumericValue | undefined;
elevation?: number | undefined;
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
alignItems?: import("react-native").FlexAlignType | undefined;
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
aspectRatio?: string | number | undefined;
borderBottomWidth?: number | undefined;
borderEndWidth?: number | undefined;
borderLeftWidth?: number | undefined;
borderRightWidth?: number | undefined;
borderStartWidth?: number | undefined;
borderTopWidth?: number | undefined;
borderWidth?: number | undefined;
bottom?: DimensionValue | undefined;
display?: "none" | "flex" | undefined;
end?: DimensionValue | undefined;
flex?: number | undefined;
flexBasis?: DimensionValue | undefined;
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
rowGap?: number | undefined;
gap?: number | undefined;
columnGap?: number | undefined;
flexGrow?: number | undefined;
flexShrink?: number | undefined;
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
height?: DimensionValue | undefined;
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
left?: DimensionValue | undefined;
margin?: DimensionValue | undefined;
marginBottom?: DimensionValue | undefined;
marginEnd?: DimensionValue | undefined;
marginHorizontal?: DimensionValue | undefined;
marginLeft?: DimensionValue | undefined;
marginRight?: DimensionValue | undefined;
marginStart?: DimensionValue | undefined;
marginTop?: DimensionValue | undefined;
marginVertical?: DimensionValue | undefined;
maxHeight?: DimensionValue | undefined;
maxWidth?: DimensionValue | undefined;
minHeight?: DimensionValue | undefined;
minWidth?: DimensionValue | undefined;
overflow?: "visible" | "hidden" | "scroll" | undefined;
padding?: DimensionValue | undefined;
paddingBottom?: DimensionValue | undefined;
paddingEnd?: DimensionValue | undefined;
paddingHorizontal?: DimensionValue | undefined;
paddingLeft?: DimensionValue | undefined;
paddingRight?: DimensionValue | undefined;
paddingStart?: DimensionValue | undefined;
paddingTop?: DimensionValue | undefined;
paddingVertical?: DimensionValue | undefined;
position?: "absolute" | "relative" | undefined;
right?: DimensionValue | undefined;
start?: DimensionValue | undefined;
top?: DimensionValue | undefined;
width?: DimensionValue | undefined;
zIndex?: number | undefined;
direction?: "inherit" | "ltr" | "rtl" | undefined;
shadowColor?: import("react-native").ColorValue | undefined;
shadowOffset?: Readonly<{
width: number;
height: number;
}> | undefined;
shadowOpacity?: import("react-native").AnimatableNumericValue | undefined;
shadowRadius?: number | undefined;
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;
transformMatrix?: number[] | undefined;
rotation?: import("react-native").AnimatableNumericValue | undefined;
scaleX?: import("react-native").AnimatableNumericValue | undefined;
scaleY?: import("react-native").AnimatableNumericValue | undefined;
translateX?: import("react-native").AnimatableNumericValue | undefined;
translateY?: import("react-native").AnimatableNumericValue | undefined;
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
verticalAlign?: "auto" | "bottom" | "top" | "middle" | undefined;
includeFontPadding?: boolean | undefined;
};
modalTitle: {
color: import("react-native").ColorValue;
fontFamily?: string | undefined;
fontSize: number;
fontStyle?: "normal" | "italic" | undefined;
fontWeight: "bold" | "100" | "normal" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
letterSpacing?: number | undefined;
lineHeight?: number | undefined;
textAlign?: "auto" | "center" | "left" | "right" | "justify" | undefined;
textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | undefined;
textDecorationColor?: import("react-native").ColorValue | undefined;
textShadowColor?: import("react-native").ColorValue | undefined;
textShadowOffset?: {
width: number;
height: number;
} | undefined;
textShadowRadius?: number | undefined;
textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
testID?: string | undefined;
fontVariant?: import("react-native").FontVariant[] | undefined;
writingDirection?: "auto" | "ltr" | "rtl" | undefined;
backfaceVisibility?: "visible" | "hidden" | undefined;
backgroundColor?: import("react-native").ColorValue | undefined;
borderBlockColor?: import("react-native").ColorValue | undefined;
borderBlockEndColor?: import("react-native").ColorValue | undefined;
borderBlockStartColor?: import("react-native").ColorValue | undefined;
borderBottomColor?: import("react-native").ColorValue | undefined;
borderBottomEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderBottomStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderColor?: import("react-native").ColorValue | undefined;
borderCurve?: "circular" | "continuous" | undefined;
borderEndColor?: import("react-native").ColorValue | undefined;
borderEndEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderEndStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderLeftColor?: import("react-native").ColorValue | undefined;
borderRadius?: import("react-native").AnimatableNumericValue | undefined;
borderRightColor?: import("react-native").ColorValue | undefined;
borderStartColor?: import("react-native").ColorValue | undefined;
borderStartEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStartStartRadius?: import("react-native").AnimatableNumericValue | undefined;
borderStyle?: "solid" | "dotted" | "dashed" | undefined;
borderTopColor?: import("react-native").ColorValue | undefined;
borderTopEndRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopLeftRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopRightRadius?: import("react-native").AnimatableNumericValue | undefined;
borderTopStartRadius?: import("react-native").AnimatableNumericValue | undefined;
opacity?: import("react-native").AnimatableNumericValue | undefined;
elevation?: number | undefined;
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
alignContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "stretch" | undefined;
alignItems?: import("react-native").FlexAlignType | undefined;
alignSelf?: "auto" | import("react-native").FlexAlignType | undefined;
aspectRatio?: string | number | undefined;
borderBottomWidth?: number | undefined;
borderEndWidth?: number | undefined;
borderLeftWidth?: number | undefined;
borderRightWidth?: number | undefined;
borderStartWidth?: number | undefined;
borderTopWidth?: number | undefined;
borderWidth?: number | undefined;
bottom?: DimensionValue | undefined;
display?: "none" | "flex" | undefined;
end?: DimensionValue | undefined;
flex?: number | undefined;
flexBasis?: DimensionValue | undefined;
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
rowGap?: number | undefined;
gap?: number | undefined;
columnGap?: number | undefined;
flexGrow?: number | undefined;
flexShrink?: number | undefined;
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
height?: DimensionValue | undefined;
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
left?: DimensionValue | undefined;
margin?: DimensionValue | undefined;
marginBottom: DimensionValue;
marginEnd?: DimensionValue | undefined;
marginHorizontal?: DimensionValue | undefined;
marginLeft?: DimensionValue | undefined;
marginRight?: DimensionValue | undefined;
marginStart?: DimensionValue | undefined;
marginTop: DimensionValue;
marginVertical?: DimensionValue | undefined;
maxHeight?: DimensionValue | undefined;
maxWidth?: DimensionValue | undefined;
minHeight?: DimensionValue | undefined;
minWidth?: DimensionValue | undefined;
overflo