/// <reference types="node" />
import stream from 'stream';
import { ComponentType } from './componentTargets';
export default function collectComponentSourceMaps(): {
    collector: (componentType: ComponentType, componentPlatform?: string) => stream.Transform;
    emitter: stream.PassThrough;
};
