import React from 'react';
import type { StoryObj } from '@storybook/react';
import type { DropdownItemProps } from './DropdownItemTypes';
declare const _default: {
    title: string;
    tags: string[];
    component: React.ForwardRefExoticComponent<DropdownItemProps & React.RefAttributes<HTMLDivElement>>;
    argTypes: {
        'data-testid': {
            control: string;
            description: string;
        };
        label: {
            control: string;
            description: string;
        };
        icon: {
            control: string;
            description: string;
        };
        notificationAmount: {
            control: string;
            description: string;
        };
        items: {
            control: string;
            description: string;
        };
        note: {
            control: string;
            description: string;
        };
    };
};
export default _default;
type Story = StoryObj<DropdownItemProps>;
export declare const Default: Story;
export declare const WithCustomLabel: Story;
export declare const WithDifferentNotificationAmount: Story;
export declare const WithNoSubItems: Story;
export declare const WithLongNote: Story;
