import { Meta, StoryObj } from '@storybook/web-components';
interface SideNavigationArgs {
    'custom-class'?: string;
    expanded: boolean;
    'max-width': string;
    'min-width'?: string;
    'collapse-on-click-outside'?: boolean;
    mode: 'overlay' | 'push';
    'target-content'?: string;
}
declare const meta: Meta<SideNavigationArgs>;
export default meta;
type Story = StoryObj<SideNavigationArgs>;
export declare const Default: Story;
export declare const WithSubmenu: Story;
export declare const WithTreeMenu: Story;
export declare const ShadowDomParent: Story;
