import type { SideEffectFree } from './types'; declare type ProessedSource = null | string; export declare function processSource(originalSource: string, sideEffectFree: SideEffectFree): ProessedSource; export {};