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; currency?: string; currencyDisplaySymbol?: string; } declare const Tile: React.FC; export default Tile;