/** * Utility class for counting and estimating tokens in text */ export declare class TokenCounter { /** * Count exact number of tokens in text */ count(text: string): number; /** * Estimate number of tokens in text (faster but less accurate) */ estimateTokens(text: string): number; }