import React from 'react'; import { TextProps as RNTextProps } from 'react-native'; export declare type SubheadingProps = RNTextProps & { weight?: 'regular' | 'medium' | 'semibold' | 'bold'; }; export declare const Subheading: React.FC;