import type { SkipItem } from '../isomorphic/types.ts'; export interface StorybookIndexEntry { type: string; importPath?: string; title?: string; name?: string; } /** * Resolves `storyFile` skip items to component-based skip items using the * Storybook `index.json` entries. Items that already have a `component` are * passed through unchanged. * * Path matching is done by normalising both the `importPath` from the index * and the user-supplied `storyFile` (stripping a leading `./`), with an * absolute-path fallback via `path.resolve`. */ export default function resolveStoryFileItems(skip: Array, entries: Record): Array<{ component: string; variant?: string; }>; //# sourceMappingURL=resolveStoryFileItems.d.ts.map