import { StoryObj } from '@storybook/react';
import { default as SystemMessage } from '../SystemMessage';
declare const meta: {
    component: typeof SystemMessage;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        systemMessageType: {
            description: string;
            type: {
                name: "string";
                required: false;
            };
            options: (string | undefined)[];
            control: {
                type: "select";
            };
        };
        textSettings: {
            description: string;
            control: {
                type: "object";
            };
        };
        showMessage: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        externalStyle: {
            description: string;
            control: {
                type: "object";
            };
        };
        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;
