import { Identity } from "../../../internal"; export declare enum VenueType { /** * Default type */ Other = "Other", /** * Primary issuance */ Distribution = "Distribution", /** * Offering/Fundraise */ Sto = "Sto", Exchange = "Exchange" } export interface VenueDetails { type: VenueType; owner: Identity; description: string; } //# sourceMappingURL=types.d.ts.map