import type { Box } from './Box.js';
/**
 * Utility type to get just the fields of a box
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type Fields<T> = Omit<T, Exclude<keyof Box, 'data'> | 'boxes'>;
//# sourceMappingURL=Fields.d.ts.map