import { StoryObj } from '@storybook/html';
import { ButtonProps } from './Button';
declare const meta: {
title: string;
render: (args: ButtonProps) => DocumentFragment;
argTypes: {
size: {
control: string;
options: string[];
};
variant: {
control: string;
options: string[];
};
text: {
control: string;
};
onClick: {
action: string;
};
};
};
export default meta;
type Story = StoryObj;
export declare const Solid: Story;
export declare const Soft: Story;