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