export declare const screenWidth: number; export declare const screenHeight: number; export declare const isAndroid: boolean; export declare const isIOS: boolean; export declare const parentHeight = "100%"; export declare const parentWidth = "100%"; export declare const GlobalStyle: { container: { alignItems: "center"; justifyContent: "center"; }; flexRow: { flexDirection: "row"; }; verticalAlign: { justifyContent: "center"; }; horizentalAlign: { alignItems: "center"; }; containerCenterStretch: { justifyContent: "center"; alignItems: "stretch"; }; containerRow: { alignItems: "center"; justifyContent: "center"; flexDirection: "row"; }; containerStart: { alignItems: "flex-start"; justifyContent: "space-between"; }; containerStartRow: { alignItems: "flex-start"; justifyContent: "space-between"; flexDirection: "row"; }; containerItemStart: { flexDirection: "column"; alignItems: "flex-start"; justifyContent: "flex-start"; }; containerItemRowStart: { flexDirection: "row"; alignItems: "flex-start"; justifyContent: "flex-start"; }; containerCenterStart: { alignItems: "flex-start"; justifyContent: "center"; }; containerEnd: { alignItems: "flex-end"; justifyContent: "space-between"; }; containerCenterEnd: { alignItems: "center"; justifyContent: "flex-end"; }; containerRowCenterEnd: { alignItems: "flex-end"; justifyContent: "center"; flexDirection: "row"; }; containerRowStart: { alignItems: "center"; justifyContent: "flex-start"; flexDirection: "row"; }; containerRowEnd: { alignItems: "center"; justifyContent: "flex-end"; flexDirection: "row"; }; containerSpace: { alignItems: "center"; justifyContent: "space-between"; }; containerSpaceEvenly: { alignItems: "center"; justifyContent: "space-evenly"; }; containerSpaceAround: { alignItems: "center"; justifyContent: "space-around"; }; containerRowSpace: { alignItems: "center"; justifyContent: "space-between"; flexDirection: "row"; }; contentRowSpace: { flexDirection: "row"; justifyContent: "space-between"; }; containercolumnSpace: { alignItems: "center"; justifyContent: "space-between"; flexDirection: "column"; }; selfStretch: { justifyContent: "center"; alignItems: "center"; alignSelf: "stretch"; }; parentWidth: { width: string; }; parentHeight: { height: string; }; parentSize: { width: string; height: string; }; row: { flexDirection: "row"; }; column: { flexDirection: "column"; }; capitalize: { textTransform: "capitalize"; }; uppercase: { textTransform: "uppercase"; }; textAlignLeft: { textAlign: "left"; }; textAlignRight: { textAlign: "right"; }; textCenter: { textAlign: "center"; }; alignCenter: { alignItems: "center"; }; justifyCenter: { justifyContent: "center"; }; justifyStart: { justifyContent: "flex-start"; }; justifyEnd: { justifyContent: "flex-end"; }; justifySpaceBetween: { justifyContent: "space-between"; }; justifySpaceAround: { justifyContent: "space-around"; }; fullWidth: { width: number; }; fullHeight: { height: number; maxHeight: number; }; fullFlex: { flex: number; }; roundedRadius: { borderRadius: number; }; bold: { fontWeight: "700"; }; relative: { position: "relative"; }; absolute: { position: "absolute"; }; positionTop: { top: number; left: number; right: number; }; top: { top: number; }; left: { left: number; }; left3: { left: number; }; right: { right: number; }; right7: { right: number; }; positionAuto: { left: string; right: string; }; positionZero: { left: number; right: number; top: number; bottom: number; }; index4: { zIndex: number; }; formHeight: { height: number; }; scroll: { overflow: "scroll"; }; rounded: { borderRadius: number; }; fontWeightBold: { fontWeight: "bold"; }; fontWeight600: { fontWeight: "600"; }; fontWeight500: { fontWeight: "500"; }; fontBold: { fontWeight: "bold"; }; medium: { fontWeight: "500"; }; fontSemiBold: { fontWeight: "600"; }; fontItalic: { fontFamily: string; }; fontNormal: { fontWeight: "400"; }; overflowHidden: { overflow: "hidden"; }; screenWidth: { width: number; }; screenHeight: { height: number; }; radiusDense: { borderRadius: number; }; radius: { borderRadius: number; }; radiusDouble: { borderRadius: number; }; radiusTriple: { borderRadius: number; }; }; //# sourceMappingURL=GlobalStyles.d.ts.map