import { StoryObj } from '@storybook/react';
import { default as FancyChip } from '../FancyChip';
declare const meta: {
    component: typeof FancyChip;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        sizeC: {
            description: string;
            control: {
                type: "select";
            };
        };
        isActive: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        outlined: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        onClick: {
            description: string;
            control: {
                type: "object";
            };
        };
        externalStyle: {
            description: string;
            control: {
                type: "object";
            };
        };
        isHoverable: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        outlinedBackgroundStrength: {
            description: string;
            control: {
                min: number;
                max: number;
                type: "range";
            };
            tabel: {
                summary: {
                    defaultValue: number;
                };
            };
        };
        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;
                };
            };
        };
        image: {
            description: string;
            control: {
                type: "object";
            };
        };
        label: {
            description: string;
            control: {
                type: "text";
            };
        };
        icon: {
            description: string;
            control: {
                type: "object";
            };
        };
        textColor: {
            description: string;
            control: {
                type: "select";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const WithImage: Story;
export declare const WithIcon: Story;
