import React from 'react'; import { TouchableOpacityProps, ImageSourcePropType } from 'react-native'; export type TrackerValueRowProps = { hasBorderTop?: boolean; color: string; title: string; subTitle: string; image?: ImageSourcePropType; } & TouchableOpacityProps; export declare const TrackerValueRow: (props: TrackerValueRowProps) => React.JSX.Element; declare const defaultStyles: (theme: import("../../../BrandConfigProvider").Theme) => readonly ["TrackerValueRow", import("../../../BrandConfigProvider/styles/createStyles").NamedStyles<{ container: { flexDirection: "row"; justifyContent: "space-between"; alignItems: "center"; paddingHorizontal: number; paddingVertical: number; borderBottomWidth: number; borderBottomColor: string; }; titleText: { fontSize: number; marginBottom: number; lineHeight: number; }; subTitleText: { fontSize: number; lineHeight: number; }; image: { width: number; height: number; borderRadius: number; justifyContent: "center"; alignItems: "center"; }; }>]; declare module './../../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export {};