import { TileContentProps } from "./tile-content.component"; interface StyledTileContentProps extends TileContentProps { isHorizontal?: boolean; width?: string | number; height?: string | number; } declare const StyledTileContent: import("styled-components").StyledComponent<"div", any, { theme: object; } & StyledTileContentProps, "theme">; export default StyledTileContent;