import { Meta, StoryObj } from '@storybook/web-components';
import { ModusSize } from '../types';
interface MenuItemArgs {
    bordered?: boolean;
    'custom-class'?: string;
    disabled?: boolean;
    label: string;
    'start-icon'?: string;
    selected?: boolean;
    size?: ModusSize;
    'sub-label'?: string;
    value: string;
}
declare const meta: Meta<MenuItemArgs>;
export default meta;
type Story = StoryObj<MenuItemArgs>;
export declare const Default: Story;
