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