import React, { FC } from 'react'; export interface ITileProps { children: React.ReactNode; title?: string; size?: string; shadow?: boolean; backgroundColor?: string; height?: string; theme?: any; headerDivader?: boolean; decorativeEdge?: boolean; } export declare const Tile: FC;