import { StoryObj } from '@storybook/react';
import { default as FancyOpacitySlider } from '../FancyOpacitySlider';
declare const meta: {
    component: typeof FancyOpacitySlider;
    title: string;
    parameters: {
        docs: {
            layout: string;
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        colorValue: {
            description: string;
        };
        opacity: {
            description: string;
            control: {
                type: "number";
                min: number;
                max: number;
                step: number;
            };
        };
        handler: {
            description: string;
            control: {
                type: "object";
            };
        };
        sizeC: {
            description: string;
            control: {
                type: "select";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
