import { ProcessSandboxedCodeOptions } from '../runtime/ejecutar'; export interface SandboxFile { name: string; content: string; main?: boolean; compiled?: { esjs?: string; js?: string; }; sandboxed?: { imports: string; codeWithoutImports: string; }; error?: SandboxFileError; } export interface SandboxFileError { message: string; line: number; column: number; stack: string; } export declare function processSandboxedFiles(files: SandboxFile[], options: ProcessSandboxedCodeOptions): any[]; //# sourceMappingURL=processSandboxedFiles.d.ts.map