/** * External dependencies */ import { type StoryAnimation } from '@googleforcreators/animation'; import type { BackgroundAudio, Element, ElementId } from '@googleforcreators/elements'; interface AutoAdvanceProps { animations?: StoryAnimation[]; defaultPageDuration?: number; elements: Element[]; backgroundAudio?: BackgroundAudio; id: ElementId; } declare function getAutoAdvanceAfter({ animations, defaultPageDuration, elements, backgroundAudio, id, }: AutoAdvanceProps): string; export default getAutoAdvanceAfter; //# sourceMappingURL=getAutoAdvanceAfter.d.ts.map