import * as React from "react"; import { ImageSourcePropType, StyleProp, TextStyle, ViewStyle } from "react-native"; import theme from "../styles/DefaultTheme"; declare type Props = { titleTypeStyle?: StyleProp; titleColor?: string; subtitleTypeStyle?: StyleProp; subtitleColor?: string; title?: string; subtitle?: string; multilineSubtitle?: boolean; image?: string | ImageSourcePropType; right?: () => React.ReactNode; style?: StyleProp; theme: typeof theme; }; declare const _default: React.ComponentType & { theme?: import("@draftbit/react-theme-provider").$DeepPartial | undefined; }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & React.FC, {}>; export default _default;