import type { StoryObj } from '@storybook/react'; import Navbar from './Navbar'; declare const meta: { component: typeof Navbar; tags: string[]; args: { logo: string; color: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;