import { StoryObj } from '@storybook/html';
import { SliderProps } from './Slider';
declare const meta: {
title: string;
render: (args: SliderProps) => DocumentFragment;
argTypes: {
min: {
control: string;
};
max: {
control: string;
};
value: {
control: string;
};
onChange: {
action: string;
};
};
};
export default meta;
type Story = StoryObj;
export declare const Normal: Story;