import type { Meta, StoryObj } from "@storybook/react";
import { PropsWithChildren } from "react";
import { BlokButtonSelectProps } from "./BlokButtonSelect";
type ComponentProps = PropsWithChildren<BlokButtonSelectProps<string, string>>;
declare const meta: Meta<ComponentProps>;
export default meta;
type Story = StoryObj<ComponentProps>;
export declare const optionsWithIcons: Array<{
    icon: string;
    id: number;
    label: string;
}>;
export declare const BlokButtonSelectExamples: Story;
