import type { QueryProps } from 'src/shared/types';
import React from 'react';
interface SelectedEventTileProps {
    title?: string;
    format?: string;
    url: string;
    valueKey: string;
    previousValueKey: string;
    changeKey: string;
    details?: any[];
    query: QueryProps;
}
declare const SelectedEventTile: React.FC<SelectedEventTileProps>;
export default SelectedEventTile;
