import type { StorybookRawStory } from "./index";
export declare const supportedStoryVersionV3: 3;
export interface StorybookStoriesJson {
    v: typeof supportedStoryVersionV3;
    stories: Record<string, Omit<StorybookRawStory, "type">>;
}
export declare const storybookDataJsonPathV3 = "stories.json";
export declare const extractStoriesV3: (dataJson: StorybookStoriesJson) => StorybookRawStory[];
