interface ICompileOpts { type: 'esm' | 'cjs'; targetPath: string; watch?: boolean; } export default function Compile(options: ICompileOpts): Promise; export {};