import type { StoryObj } from '@storybook/react'; import * as React from 'react'; declare const meta: { title: string; component: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; argTypes: { disabled: { control: "boolean"; }; onValueChange: { control: { disable: true; }; }; }; render: (args: Omit, "ref"> & React.RefAttributes) => React.JSX.Element; }; export default meta; type Story = StoryObj; export declare const Default: Story;