import { StoryObj } from '@storybook/react-vite'; import { default as Range } from './Range'; declare const meta: { title: string; component: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; parameters: { layout: string; }; tags: string[]; argTypes: { value: { control: "number"; }; min: { control: "number"; }; max: { control: "number"; }; step: { control: "number"; }; suffix: { control: "text"; }; isInputField: { control: "boolean"; }; inputFieldPosition: { control: "select"; options: string[]; }; onOk: { action: string; }; }; args: { onClick: import('storybook/internal/test').Mock<(...args: any[]) => any>; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;