import React from 'react'; import { ReactNode } from 'react'; /** In order to improve performance, we only want to load these scripts once they're needed * (ie when a Story is opened). However, if we load the scripts AFTER the lightbox is opened, * the amp-story-player events won't be ready and the StoryView will never load. * This wrapper hides the content until the scripts have been appended. */ declare const StorytellerStoriesScriptWrapper: ({ children, }: { children: ReactNode; }) => React.JSX.Element; export default StorytellerStoriesScriptWrapper;