import type { Meta, StoryObj } from "@storybook/react";
import { PropsWithChildren } from "react";
import { BlokButtonProps } from "./BlokButton";
type ComponentProps = PropsWithChildren<BlokButtonProps>;
declare const meta: Meta<ComponentProps>;
export default meta;
type Story = StoryObj<ComponentProps>;
export declare const AllButtons: Story;
export declare const PlayGround: Story;
