import { Meta, StoryObj } from '@storybook/web-components';
import { ModusSize, Orientation } from '../types';
interface MenuArgs {
    bordered?: boolean;
    'custom-class'?: string;
    orientation?: Orientation;
    size?: ModusSize;
}
declare const meta: Meta<MenuArgs>;
export default meta;
type Story = StoryObj<MenuArgs>;
export declare const Default: Story;
export declare const CustomMenu: Story;
