/// import type { StoryObj } from '@storybook/react'; import type { ActionConfig } from './types'; declare const meta: { title: string; component: ({ variant, config, }: { variant?: 'highlight' | 'sticky'; config?: ActionConfig[]; }) => import("react").JSX.Element; tags: string[]; parameters: { docs: { description: { component: string; }; }; }; args: { variant: "highlight"; }; }; export default meta; type Story = StoryObj; export declare const Highlight: Story; export declare const Sticky: Story; export declare const MultipleGroups: Story;