/** * Bibblio cannot be used on localhost, because the url needs to be whitelisted * This method adds a link rel='canonical' element to to 'fake' the url * from which Bibblio is getting launched. * */ declare const addCanonicalUrlToQA: (environment: string) => void; /** * Bibblio expects certain functions to be available to the window object but * because we use npm to import the Bibblio module, we need to manually * make the functions available to the window object */ declare const makeBibblioGloballyAccessible: (bibblioModule: any) => void; /** * Initializes bibblio and fetches the related articles. */ declare const initBibblio: (ref: HTMLDivElement, recommendationKey: string, offset: number, limit: number, wrapperId: string, onComplete: any, sendGAEvent: any) => void; export { addCanonicalUrlToQA, makeBibblioGloballyAccessible, initBibblio };