//#region src/namespaces/arxiv/common/types.d.ts
declare namespace ArxivNs {
  type PrimaryCategory = {
    term?: string;
    scheme?: string;
    label?: string;
  };
  type Author = {
    affiliation?: string;
  };
  type Entry = {
    comment?: string;
    journalRef?: string;
    doi?: string;
    primaryCategory?: PrimaryCategory;
  };
}
//#endregion
export { ArxivNs };