import { TableCodes } from '../types/ToneTypes'; /** * Utility class to load frequency tables * In a real React Native app, this would load from bundled assets */ export declare class FrequencyTableLoader { private static frequencyTable; /** * Load frequency tables from bundled assets * In a real implementation, this would use react-native-fs or similar */ static loadFrequencyTables(): Promise; /** * Get frequencies to detect from loaded table */ static getFrequenciesToDetect(tableCodes: TableCodes | null): number[]; /** * Clear cached frequency table */ static clearCache(): void; } //# sourceMappingURL=FrequencyTableLoader.d.ts.map