import { ReactNode } from "react"; interface Props { heading: string; subheading?: string; children?: ReactNode; bg?: string; } declare const Tile: ({ subheading, ...props }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Tile;