import React from 'react';
import SingleValueStore from '../store';
export interface ITrendViewProps {
    store: SingleValueStore;
}
export default function TrendView(props: ITrendViewProps): React.JSX.Element | null;
