/// interface Processor { [key: string]: { name: string; handler(options: any, stream: NodeJS.ReadWriteStream): NodeJS.ReadWriteStream; }[]; } export declare const processors: Processor; export default function getProcessors(type: string): any; export {};