import type { IsoBmffBox } from './boxes/IsoBmffBox.js'; import type { BoxFilter } from './BoxFilter.js'; import type { IsoData } from './IsoData.js'; import type { IsoViewConfig } from './IsoViewConfig.js'; /** * Filters boxes based on the given filter function. * * @param raw - The raw boxes to filter. * @param config - The box parser configuration. * @param fn - The filter function. * @returns The filtered boxes. * * @group ISOBMFF * @beta */ export declare function filterBoxes(raw: IsoData | Iterable, fn: BoxFilter, config?: IsoViewConfig): T[]; //# sourceMappingURL=filterBoxes.d.ts.map