import type { Options as SwcOptions } from '@swc/core';
import type { ContextModel } from '../models/context';
import type { OutputOptions } from 'rollup';
export type GetSwcConfigArg = {
    ts: boolean;
    jsx: boolean;
};
export declare const getSwcConfig: ({ isTs, isJsx, pkg }: Pick<ContextModel, "isJsx" | "isTs" | "pkg">, { format }: Pick<OutputOptions, "format">) => SwcOptions;
