import { Button, ButtonProps } from "./Button"; import { NoUndefined } from "../../utils/types"; import type { StoryObj } from "@storybook/react"; declare const _default: { title: string; component: import("react").FC; argTypes: { variant: { control: string; options: NoUndefined<"text" | "outline" | "fillDark" | "fillLight" | "fillGray" | "fillSuccess" | "outlineGray" | "outlineLight">[]; }; size: { control: string; options: NoUndefined<"small" | "large">[]; }; }; }; export default _default; type ButtonStory = StoryObj; export declare const Default: ButtonStory; export declare const Sizes: () => import("react/jsx-runtime").JSX.Element; export declare const States: () => import("react/jsx-runtime").JSX.Element; export declare const Variants: () => import("react/jsx-runtime").JSX.Element; export declare const VariantsLoading: () => import("react/jsx-runtime").JSX.Element;