export { rollupSourceMapRemove };
export { rollupSourceMapPassthrough };
/** Remove entire source mapping, to save KBs. */
declare function rollupSourceMapRemove(code: string): {
    code: string;
    map: {
        mappings: '';
    };
};
/** Don't provide any source map, pass through current source map instead. */
declare function rollupSourceMapPassthrough(code: string): {
    code: string;
    map: null;
};
