import { ExtensionAPI } from '@mariozechner/pi-coding-agent'; /** * pi-enclave * * VM-isolated enclave for pi with automatic secret protection. * All pi tools (bash, read, write, edit) execute inside a Gondolin micro-VM. * Secrets never enter the VM; the HTTP proxy injects them on the wire. * * See README.md for architecture and configuration details. */ declare function export_default(pi: ExtensionAPI): void; export { export_default as default };