//#region src/namespaces/acast/common/types.d.ts
declare namespace AcastNs {
  type Signature = {
    key?: string;
    algorithm?: string;
    value?: string;
  };
  type Network = {
    id?: string;
    slug?: string;
    value?: string;
  };
  type Feed = {
    showId?: string;
    showUrl?: string;
    signature?: Signature;
    settings?: string;
    network?: Network;
    importedFeed?: string;
  };
  type Item = {
    episodeId?: string;
    showId?: string;
    episodeUrl?: string;
    settings?: string;
  };
}
//#endregion
export { AcastNs };