pub const UNIT_TYPE: &str = "()";
pub const CAIRO_CORE_BASIC: [&str; 17] = [
"felt",
"core::felt252",
"core::bool",
"core::integer::u8",
"core::integer::u16",
"core::integer::u32",
"core::integer::u64",
"core::integer::u128",
"core::integer::usize",
"core::integer::i8",
"core::integer::i16",
"core::integer::i32",
"core::integer::i64",
"core::integer::i128",
"core::starknet::contract_address::ContractAddress",
"core::starknet::class_hash::ClassHash",
"core::bytes_31::bytes31",
];
pub const CAIRO_CORE_SPAN_ARRAY: [&str; 2] = ["core::array::Span", "core::array::Array"];
pub const CAIRO_GENERIC_BUILTINS: [&str; 4] = [
"core::option::Option",
"core::result::Result",
"core::zeroable::NonZero",
"core::internal::bounded_int::BoundedInt",
];
pub const CAIRO_COMPOSITE_BUILTINS: [&str; 3] = [
"core::byte_array::ByteArray",
"core::starknet::eth_address::EthAddress",
"core::integer::u256",
];