import type { Meta, StoryObj } from "@storybook/react";
import { PropsWithChildren } from "react";
import { BlokSelectProps } from "./BlokSelect";
type ComponentProps = PropsWithChildren<BlokSelectProps<string, string>>;
declare const meta: Meta<ComponentProps>;
export default meta;
type Story = StoryObj<ComponentProps>;
export declare const BlokSelectExamples: Story;
