import type { Box } from './Box.js';
/**
 * ISO/IEC 14496-12:2012 - 8.12.2 Original Format Box
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type OriginalFormatBox = Box & {
    type: 'frma';
    dataFormat: number;
};
//# sourceMappingURL=OriginalFormatBox.d.ts.map