import React from "react"; import { TextStyle, StyleProp } from "react-native"; import Theme from "../styles/DefaultTheme"; declare type Props = { text: string; style?: StyleProp; /** * @optional */ theme: typeof Theme; }; export declare const Title: React.ComponentType & { theme?: import("@draftbit/react-theme-provider").$DeepPartial | undefined; }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ text, theme, style }: Props) => JSX.Element), {}>; export declare const Subtitle: React.ComponentType & { theme?: import("@draftbit/react-theme-provider").$DeepPartial | undefined; }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ text, theme, style }: Props) => JSX.Element), {}>; export declare const Caption: React.ComponentType & { theme?: import("@draftbit/react-theme-provider").$DeepPartial | undefined; }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ text, theme, style }: Props) => JSX.Element), {}>; export {};