#[cfg(feature = "prost")]
pub mod prost {
pub use prost_types::*;
pub type Timestamp = prost_types::Timestamp;
pub type Duration = prost_types::Duration;
pub type Struct = prost_types::Struct;
pub type Value = prost_types::Value;
pub type Empty = ();
pub type ListValue = prost_types::ListValue;
pub type Any = prost_types::Any;
pub type BoolValue = bool;
pub type Int32Value = i32;
pub type Int64Value = i64;
pub type UInt32Value = u32;
pub type UInt64Value = u64;
pub type FloatValue = f32;
pub type DoubleValue = f64;
pub type StringValue = std::string::String;
pub type BytesValue = bytes::Bytes;
}