import * as React from 'react'; import { ThemeProps } from '../services/ThemeContext'; interface OwnProps { body?: string; children?: React.ReactNode; error?: boolean; onPress?: () => void | Promise; title: string; type: 'editable' | 'questionable' | 'loading' | 'static' | 'touchable'; contentPadding?: boolean; maximumHeight?: 'small' | 'medium' | 'large'; disabled?: boolean; } type Props = OwnProps & ThemeProps; export declare class TileComponent extends React.PureComponent { render(): JSX.Element; } export declare const Tile: (props: Pick) => JSX.Element; export {};