import type { Meta, StoryObj } from '@storybook/react-vite'; import ArticleActionButtons from './ArticleActionButtons'; /** * `ArticleActionButtons` is the toolbar at the top of the article extract * panel: Ask AI, Suggest, Copy, Share, Highlight, Favorite, Open-in-new-tab, * zoom controls, and Close. Every button has a hover tooltip showing its * keyboard shortcut (e.g. `Alt+A`) where one is bound — Share has none. */ declare const meta: Meta; export default meta; type Story = StoryObj; /** Default toolbar. Hover any button to see its tooltip + shortcut. */ export declare const Default: Story; /** Highlight mode active and the article favorited. */ export declare const ActiveStates: Story; /** AI request in flight (the Ask button shows a loading state). */ export declare const Loading: Story; /** Zoomed in to 130%. */ export declare const ZoomedIn: Story; /** Without an article URL the open-in-new-tab button is hidden. */ export declare const NoUrl: Story;