# arcis-interface
[](https://crates.io/crates/arcis-interface)
Defines the data interface and core types for Arcis circuits. This crate provides the foundational type definitions and serialization interfaces used to describe circuit inputs, outputs, and parameters across the Arcium network.
## Usage
```rust
use arcis_interface::{CircuitInterface, Value, write_interface};
// Write circuit interface to files
write_interface("path/to/output", &circuit_interface)?;
```
## Main Exports
### Types
- `CircuitInterface` - Defines the structure and data types of a circuit
- `Value` - Represents values that can be passed to/from circuits
- `ManticoreInterface` - Specialized interface for Manticore protocol integration
### Functions
- `write_interface()` - Writes circuit interface definitions to `.idarc` and `.ts` files for cross-language compatibility