export declare const createStyles: () => { goodsInfoContainer: { flexDirection: "row"; paddingHorizontal: number; paddingTop: number; paddingBottom: number; }; goodsImage: { width: number; height: number; borderRadius: number; backgroundColor: string; }; goodsInfoRight: { flex: number; marginLeft: number; justifyContent: "center"; }; priceRow: { flexDirection: "row"; alignItems: "baseline"; }; priceCurrency: { fontSize: number; color: string; fontWeight: "bold"; }; priceInteger: { fontSize: number; color: string; fontWeight: "bold"; lineHeight: number; }; priceDecimal: { fontSize: number; color: string; fontWeight: "bold"; }; originalPrice: { fontSize: number; color: string; textDecorationLine: "line-through"; marginLeft: number; }; goodsCode: { fontSize: number; color: string; marginTop: number; }; goodsTitle: { fontSize: number; color: string; marginTop: number; lineHeight: number; }; divider: { height: number; backgroundColor: string; marginHorizontal: number; }; attributeSection: { paddingHorizontal: number; paddingTop: number; paddingBottom: number; }; attributeTitle: { fontSize: number; fontWeight: "bold"; color: string; marginBottom: number; }; quantitySection: { flexDirection: "row"; alignItems: "center"; justifyContent: "space-between"; paddingHorizontal: number; paddingVertical: number; }; quantityTitle: { fontSize: number; fontWeight: "bold"; color: string; }; footer: { paddingHorizontal: number; paddingTop: number; paddingBottom: number; }; footerButtons: { flexDirection: "row"; gap: number; }; addCartButton: { flex: number; }; confirmButton: { flex: number; }; closeButton: { position: "absolute"; top: number; right: number; zIndex: number; padding: number; }; scrollContent: { maxHeight: number; }; };