import { type Extension } from '../../index.js'; import { type ChapterProviding as LegacyChapterProviding, type HomePageSectionsProviding as LegacyHomePageSectionsProviding, type PaperbackExtensionBase, type SearchResultsProviding as LegacySearchResultsProviding, type Source as LegacySource } from './types.js'; type Source = LegacySource & PaperbackExtensionBase & LegacyChapterProviding & LegacyHomePageSectionsProviding & LegacySearchResultsProviding; type CompatWrapperInfo = { registerHomeSectionsInInitialise: boolean; }; export declare function CompatWrapper(info: CompatWrapperInfo, legacySource: Source, newSource?: Extension | undefined): Extension; export {}; //# sourceMappingURL=wrapper.d.ts.map