import React from 'react'; import { TextStyle } from 'react-native'; export interface LogSyntaxHighlighterProps { text: string; search?: string; numberOfLines?: number; style?: TextStyle | TextStyle[]; detectLinks?: boolean; } interface Token { type: 'key' | 'string' | 'number' | 'boolean' | 'null' | 'url' | 'bracket' | 'tag' | 'plain'; value: string; } export declare const tokenizeText: (input: string) => Token[]; export declare const LogSyntaxHighlighter: React.FC; export default LogSyntaxHighlighter;