import { z } from 'zod'; declare const StorybookEntrySchema: z.ZodObject<{ id: z.ZodString; title: z.ZodString; name: z.ZodString; type: z.ZodString; importPath: z.ZodOptional; }, z.core.$strip>; declare const StorybookIndexSchema: z.ZodObject<{ entries: z.ZodRecord; }, z.core.$strip>>; }, z.core.$strip>; export type StorybookEntry = z.output; export type StorybookIndex = z.output; export declare function loadStorybookIndex(baseUrl: string): Promise; export {};