import { StoryObj } from '@storybook/react'; import { default as FancyNavBar } from '../FancyNavBar'; declare const meta: { component: typeof FancyNavBar; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { externalStyle: { description: string; control: { type: "object"; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;