import type { Meta, StoryObj } from '@storybook/react-vite'; import ConfigError from './ConfigError'; /** * `ConfigError` is the full-screen setup guide shown when no AI providers are * configured. It lists the environment variables the host app needs. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story;