import { StoryObj } from '@storybook/react';
import { default as FancyProfilePicture } from './FancyProfilePicture';
declare const meta: {
    component: typeof FancyProfilePicture;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        borderRadius: {
            type: {
                name: "string";
                required: false;
            };
            control: {
                type: "select";
            };
            options: (string | undefined)[];
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        sizeC: {
            control: {
                type: "select";
            };
            options: string[];
        };
        children: {
            control: {
                type: "object";
            };
            description: string;
        };
        nickname: {
            control: {
                type: "text";
            };
            description: string;
            table: {
                defaultValue: {
                    summary: string;
                };
            };
        };
        externalStyle: {
            control: {
                type: "text";
            };
            description: string;
        };
        textAvatarSettings: {
            control: {
                type: "object";
            };
            description: string;
        };
    };
    tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const Avatar: Story;
