import { PlaywrightData, ActionSet, ScreenshotData, StoryAction } from '../../../typings'; interface V1ScreenshotData extends ScreenshotData { actions: StoryAction[]; } export interface PlaywrightStoryData { actionSets?: ActionSet[]; screenshots?: V1ScreenshotData[]; } export type PlaywrightDataStories = { [id: string]: PlaywrightStoryData; }; interface V1PlaywrightData extends PlaywrightData { stories?: PlaywrightDataStories; } export declare const migrationV2: (data: V1PlaywrightData, version: string) => V1PlaywrightData; export {};