import type { Meta, StoryObj } from "@storybook/react";
import { PropsWithChildren } from "react";
import { BlokIconButtonProps } from "./BlokIconButton";
type ComponentProps = PropsWithChildren<BlokIconButtonProps>;
declare const meta: Meta<ComponentProps>;
export default meta;
type Story = StoryObj<ComponentProps>;
export declare const AllIconButtons: Story;
export declare const IconButtonPlayground: Story;
