import type { StorybookRawStory } from "./index";
export declare const supportedStoryVersionV4: 4;
export interface StorybookIndexJson {
    v: typeof supportedStoryVersionV4;
    entries: Record<string, StorybookRawStory>;
}
export declare const storybookDataJsonPathV4 = "index.json";
export declare const extractStoriesV4: (dataJson: StorybookIndexJson) => StorybookRawStory[];
