import type { StructureProcessor } from '@ephox/boulder'; import { Optional } from '@ephox/katamari'; interface NamedItem { readonly name: string; readonly type: string; } declare const getDataProcessor: (item: { type: string; }) => Optional; declare const getNamedItems: (structure: any) => NamedItem[]; export { getDataProcessor, getNamedItems }; //# sourceMappingURL=DataProcessors.d.ts.map