declare const slicePath: string; declare const slice2js: string; export interface CompileOptions { /** Directory containing the slice2js binary. Overrides the bundled binary. */ toolsPath?: string; /** Directory containing the Slice definitions. Overrides the bundled path. */ slicePath?: string; /** Working directory for the compiler process. */ cwd?: string; } /** * Compile Slice files using the slice2js compiler. * @param args - Command-line arguments for slice2js. * @param options - Optional configuration. * @returns Resolves with the exit code. */ export declare function compile(args?: string[], { toolsPath, slicePath: customSlicePath, cwd }?: CompileOptions): Promise; export { slicePath, slice2js }; //# sourceMappingURL=slice2js.d.ts.map