import type { StoryObj } from '@storybook/react'; import RoundedButton from './RoundedButton'; declare const meta: { component: typeof RoundedButton; tags: string[]; args: { text: string; backgroundColor: string; color: string; disabled: false; fontSize: string; padding: string; borderRadius: number; height: number; bold: false; width: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Disabled: Story; export declare const DifferentColors: Story;