import { StoryObj } from '@storybook/react';
import { default as Stepper } from '../Stepper';
declare const meta: {
    component: typeof Stepper;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        themeType: {
            description: string;
            control: {
                type: "select";
            };
            options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[];
            table: {
                defaultValue: {
                    summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent";
                };
            };
        };
        layer: {
            description: string;
            control: {
                type: "range";
                min: number;
                max: number;
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        size: {
            description: string;
            control: {
                type: "select";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        steps: {
            description: string;
            control: {
                type: "object";
            };
        };
        flexDirection: {
            description: string;
            control: {
                type: "select";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        activeStep: {
            description: string;
            control: {
                type: "number";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        thinkness: {
            description: string;
            control: {
                type: "text";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        lineLength: {
            description: string;
            control: {
                type: "text";
            };
        };
        gap: {
            description: string;
            control: {
                type: "select";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        labelAlign: {
            description: string;
            control: {
                type: "select";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        textColor: {
            description: string;
            control: {
                type: "select";
            };
        };
        hoverColor: {
            description: string;
            control: {
                type: "select";
            };
        };
        outlined: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        themeTypeActiveHover: {
            description: string;
            control: {
                type: "select";
            };
        };
        textHover: {
            description: string;
            control: {
                type: "select";
            };
        };
        useSimpleTextColor: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        backgroundState: {
            description: string;
            control: {
                type: "select";
            };
        };
        outlinedBackgroundStrength: {
            description: string;
            control: {
                type: "number";
            };
            min: number;
            max: number;
            step: number;
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
