import * as React from 'react'; import { NavGuardProperties } from '..'; import { StoryObj } from '@storybook/react-vite'; export declare const v0colors: { primary: string; secondary: string; body: string; headerBackgroundColor: string; borderColor: string; primaryFade: string; greyText: string; placeholderText: string; textColor: string; textColorFade: string; textColorMoreFade: string; white: string; lightGrey: string; }; type testType = 'button' | 'appBar'; declare const meta: { args: { when: true; txt: string; txtDiscard: string; txtCancel: string; txtSave: string; testType: "button"; }; render: ({ ...args }: Omit & { testType: testType; }) => React.JSX.Element; title: string; excludeStories: string[]; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithAppBar: Story; export declare const WithExclude: Story;