import type { Logger } from '../logger/index.js'; import type { GetSwcOptionsParams } from './utils.js'; type SwcCompileOptions = Pick & { projectPath: string; outputPath: string; logger: Logger; }; export declare function compile({ projectPath, outputPath, logger, additionalPaths, exclude, publicPath, }: SwcCompileOptions): Promise; export {};