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