import type { FullBox } from './FullBox.js';
/**
 * ISO/IEC 14496-12:202x - 8.4.6 Extended language tag
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type ExtendedLanguageBox = FullBox & {
    type: 'elng';
    extendedLanguage: string;
};
//# sourceMappingURL=ExtendedLanguageBox.d.ts.map