import type { TextStyle } from 'react-native'; interface TextProps { content?: string; variant?: 'heading' | 'body' | 'caption' | 'label' | 'mono'; style?: TextStyle; _tokens?: Record; testID?: string; onClick?: () => void; onPress?: () => void; } export declare function Text({ content, variant, style, _tokens, testID, onClick, onPress }: TextProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=text.d.ts.map