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