import { ActionSet, ScreenshotOptions, ScreenshotSetting, PlaywrightData } from '../../../typings'; interface ScreenshotDataV0 extends ScreenshotSetting { title: string; hash?: string; index?: number; options: ScreenshotOptions & { cursor?: boolean; }; props?: { name: string; value?: never; }[]; } interface V0StoryData { actionSets?: ActionSet & { description?: string; }[]; screenshots?: ScreenshotDataV0[]; hash: string; } interface V0 { [story: string]: V0StoryData; } export declare const migrateToV1: (data: V0, version: string) => PlaywrightData; export {};