import { StoryObj } from '@storybook/react';
import { default as SliderMarker } from '../SliderMarker';
declare const meta: {
    component: typeof SliderMarker;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        position: {
            description: string;
            control: {
                type: "text";
            };
        };
        children: {
            description: string;
            control: {
                type: "text";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
