import React from 'react'; import { Tracker as TrackerType, TrackerValues } from '../services/TrackTileService'; type TrackerRowProps = { loading: boolean; trackers: TrackerType[]; values: TrackerValues[string]; onOpenTracker: (metric: TrackerType) => void; styles?: TrackRowStyles; }; export declare function TrackerRow(props: TrackerRowProps): React.JSX.Element; declare const defaultStyles: (theme: import("../../BrandConfigProvider").Theme) => readonly ["TrackerRow", import("../../BrandConfigProvider/styles/createStyles").NamedStyles<{ trackerRowLoadingIndicatorView: { height: number; paddingHorizontal: number; justifyContent: "center"; paddingBottom: number; }; trackerRowContainer: { minWidth: string; flexDirection: "row"; justifyContent: "center"; }; }>]; declare module './../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type TrackRowStyles = NamedStylesProp; export {};