import type { SandboxSubstrate, SubstrateConfig } from '../substrate.js'; /** * Does an e2b template alias belong to SLICC? `Sandbox.list` returns every * sandbox on the team, so we filter by template alias (`info.name`) to ignore * unrelated sandboxes. We match the `slicc` PREFIX, not exact `slicc`, so cones * booted from an isolated test alias (e.g. `slicc-test`, built via * SLICC_E2B_TEMPLATE_NAME) still appear in `--cloud list` instead of showing as * `dead`. The undefined guard keeps a nameless sandbox from throwing. */ export declare function isSliccTemplate(name: string | undefined): boolean; export declare function createE2bSubstrate(cfg: SubstrateConfig): SandboxSubstrate; //# sourceMappingURL=e2b.d.ts.map