//#region src/namespaces/yt/common/types.d.ts
declare namespace YtNs {
  type Item = {
    videoId?: string;
    channelId?: string;
  };
  type Feed = {
    channelId?: string;
    playlistId?: string;
  };
}
//#endregion
export { YtNs };