namespace Beam.Exports {
public interface IAsyncExporter : IExporter {
///
/// Asynchronously writes the object to the desired path, creating it if it does not exist.
///
/// The path of the exported object
///
public Task WriteAsync(string path);
}
}