import { StoryObj } from '@storybook/react';
import { default as FancySVGAtom } from '../FancySVGAtom';
declare const meta: {
    component: typeof FancySVGAtom;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        sizeC: {
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
            control: {
                type: "select";
            };
        };
        systemMessage: {
            description: string;
            control: {
                type: "select";
            };
            defaultValue: undefined;
            options: (string | undefined)[];
        };
        isActive: {
            description: string;
            control: {
                type: "boolean";
            };
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        isPassive: {
            description: string;
            control: {
                type: "boolean";
            };
            defaultValue: boolean;
            default: {
                summary: boolean;
            };
        };
        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;
                };
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
