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