export type DatasetMetadataExportFormats = Record; type DatasetMetadataExportFormat = DatasetMetadataExportFormatBase | XmlDatasetMetadataExportFormat; interface DatasetMetadataExportFormatBase { displayName: string; mediaType: string; isHarvestable: boolean; isVisibleInUserInterface: boolean; } interface XmlDatasetMetadataExportFormat extends DatasetMetadataExportFormatBase { XMLNameSpace: string; XMLSchemaLocation: string; XMLSchemaVersion: string; } export {};