import type { Box } from './Box.js';
import type { ContainerBox } from './ContainerBox.js';
/**
 * User Data Box - 'udta' - Container
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type UserDataBox = ContainerBox<Box> & {
    type: 'udta';
};
//# sourceMappingURL=UserDataBox.d.ts.map