import { StoryObj } from '@storybook/react'; import { NavigationHeader } from './NavigationHeader'; declare const meta: { title: string; component: typeof NavigationHeader; parameters: { layout: string; backgrounds: { default: string; }; }; tags: string[]; args: { brandLabel: string; navItems: { label: string; href: string; }[]; primaryAction: { label: string; href: string; }; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; //# sourceMappingURL=NavigationHeader.stories.d.ts.map