import { TsModule } from '../module';
export interface PatchModuleOptions {
    skipDts?: boolean;
    libraryName?: string;
}
export declare function patchModule(tsModule: TsModule, options?: PatchModuleOptions): {
    js: string;
    dts?: string;
};
