import { ProjectAnnotations, Renderer } from '@storybook/types'; type ArrayElement = ArrType extends readonly (infer ElementType)[] ? ElementType : never; declare const globalTypes: { stylesheets: { themes: { id: string; title: string; url: string; }[]; }; }; declare const themes: { id: string; title: string; url: string; }[]; type GlobalTypes = typeof globalTypes; type Theme = ArrayElement; declare const preview: ProjectAnnotations; export { GlobalTypes, Theme, preview as default };