import * as React from 'react'; type TextProps = { primary?: React.ReactNode; secondary?: React.ReactNode; bold?: boolean; highlight?: boolean; reverse?: boolean; }; export declare const Text: React.ForwardRefExoticComponent>; export {};