import React from 'react'; import { Text as NativeText, StyleProp, TextStyle } from 'react-native'; import type { Theme } from '../../types'; export type TextProps = React.ComponentProps & { bold?: boolean; children: React.ReactNode; disabled?: boolean; secondary?: boolean; style?: StyleProp; theme: Theme; }; declare const _default: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ bold, children, disabled, secondary, theme, style, ...rest }: TextProps) => React.JSX.Element), {}>; export default _default; //# sourceMappingURL=Text.d.ts.map