import { Meta, StoryObj } from '@storybook/react-vite'; import { ComponentProps } from 'react'; import { Button } from '../ui/button'; type ButtonStoryProps = ComponentProps & { withIcon?: boolean; }; declare const meta: Meta; export default meta; type Story = StoryObj; export declare const PrimaryButtonWithoutIcon: Story; export declare const PrimaryButtonWithIcon: Story; export declare const SecondaryButtonWithoutIcon: Story; export declare const SecondaryButtonWithIcon: Story; export declare const DestructiveButtonWithoutIcon: Story; export declare const DestructiveButtonWithIcon: Story; export declare const GhostButton: Story; export declare const LinkButton: Story; export declare const IconButton: Story; export declare const OutlineButton: Story; //# sourceMappingURL=button.stories.d.ts.map