import React from 'react'; import { Tracker, TrackerValuesContext } from './services/TrackTileService'; export type TrackTileProps = { title?: string; onOpenSettings: (valuesContext: TrackerValuesContext) => void; onOpenTracker: (metric: Tracker, valuesContext: TrackerValuesContext) => void; hideSettingsButton?: boolean; styles?: TrackTileStyles; shouldUseOntology?: boolean; }; export declare function TrackTile({ onOpenSettings, onOpenTracker, hideSettingsButton, title, styles: instanceStyles, shouldUseOntology, }: TrackTileProps): React.JSX.Element; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["TrackTile", import("../BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type TrackTileStyles = NamedStylesProp; export {};