import { GlossaristModel } from './base.js'; export interface PronunciationJson { content?: string | null; language?: string | null; script?: string | null; system?: string | null; country?: string | null; } export declare class Pronunciation extends GlossaristModel { readonly content: string | null; readonly language: string | null; readonly script: string | null; readonly system: string | null; readonly country: string | null; constructor(data?: PronunciationJson); toJSON(): PronunciationJson; static fromJSON(data: PronunciationJson): Pronunciation; } //# sourceMappingURL=pronunciation.d.ts.map