import type { StoryObj } from "@storybook/react"; import { ListItem } from "../index_with_tw_base"; declare const meta: { title: string; component: typeof ListItem; tags: string[]; argTypes: { hasSeparator: { control: "boolean"; description: string; }; hasSeparatorIfLast: { control: "boolean"; description: string; }; groupName: { control: "text"; description: string; }; itemsAlignment: { control: "select"; options: string[]; description: string; }; onClick: { action: string; description: string; }; }; }; export default meta; type Story = StoryObj; export declare const WithOnClick: Story; export declare const WithGroupAndSection: Story; //# sourceMappingURL=ListItem.stories.d.ts.map