//#region src/namespaces/psc/common/types.d.ts
declare namespace PscNs {
  type Chapter = {
    start: string;
    title: string;
    href?: string;
    image?: string;
  };
  type Item = {
    chapters?: Array<Chapter>;
  };
}
//#endregion
export { PscNs };