/** * Estimate tokens in text by analyzing character types * This function handles mixed-language text (Chinese and English) by counting * different character types and applying appropriate token ratios for each type * * @param text - The text to estimate * @returns Estimated token count */ export declare function estimateTokens(text: string): number;