import type { Meta, StoryObj } from '@storybook/react'; import { RangeField } from './RangeField'; declare const meta: Meta; export default meta; declare type Story = StoryObj; export declare const Simple: Story; export declare const CustomLabels: Story; export declare const WithMinMaxLimits: Story; export declare const WithCustomProps: Story;