/** * External dependencies */ import { type Page } from '@googleforcreators/elements'; interface PreloadResource { url: string; type: string; } /** * Goes through all pages in a story to find the resources that should be preloaded. * * Currently, this includes the first page's background image/video. * * @param pages List of pages. * @return List of preload resources. */ declare function getPreloadResources(pages: Page[]): PreloadResource[]; export default getPreloadResources; //# sourceMappingURL=getPreloadResources.d.ts.map