import { ObservableMap } from '@stencil/store';
import { DisplayStatsStoreState } from '../sl-display-stats-store';
export declare class SlDisplayStatsItem {
    el: HTMLSlDisplayStatsItemElement;
    /** Represents the label of the element */
    label: string;
    /** Represents the name of the icon to be displayed */
    iconName?: string;
    /** Represents the hint for screen readers */
    srHint?: string;
    /** Represents the value for the trend */
    trendValue?: number;
    /** Represents the value for the amount. If you must format this value with sl-data-format
     * use the slot "amount" to pass this value. */
    amountValue?: string | number;
    /** Represents the description for the tooltip */
    tooltipDescription?: string;
    store: ObservableMap<DisplayStatsStoreState>;
    constructor();
    private displayStatsComponent;
    render(): any;
}
