import type { CommonConfig } from "../config/types";
export declare const transformCode: (code: string, { sourceFile, sourceMaps, isSilent }: {
    sourceFile: string;
    sourceMaps: boolean;
    isSilent?: boolean | undefined;
}) => string;
export declare const registerTransformHook: (isSilent?: boolean) => void;
export declare const updateTransformHook: (config: CommonConfig) => void;
export declare const enableSourceMaps: () => void;
