import type { StoryObj } from "@storybook/react"; import React from "react"; import { Avatar } from "../index_with_tw_base"; declare const meta: { title: string; component: typeof Avatar; tags: string[]; argTypes: { size: { options: readonly ["xxs", "xs", "sm", "md", "lg", "xl", "2xl", "auto"]; control: { type: "select"; }; description: string; }; name: { control: "text"; description: string; }; visual: { control: "text"; description: string; }; emoji: { control: "text"; description: string; }; icon: { options: string[]; mapping: { readonly none: null; readonly ActionBeerIcon: (props: React.SVGProps) => React.JSX.Element; readonly StarStrokeIcon: (props: React.SVGProps) => React.JSX.Element; }; control: { type: "select"; }; description: string; }; backgroundColor: { control: "text"; description: string; }; iconColor: { control: "text"; description: string; }; clickable: { control: "boolean"; description: string; }; busy: { control: "boolean"; description: string; }; disabled: { control: "boolean"; description: string; }; isRounded: { control: "boolean"; description: string; }; }; }; export default meta; type Story = StoryObj; export declare const Playground: Story; export declare const AvatarExample: Story; export declare const AvatarStackExample: Story; export declare const AvatarGridExample: Story; export declare const AvatarBusyExample: Story; export declare const AvatarClickableExample: Story; export declare const AvatarWithImage: Story; export declare const AvatarWithName: Story; export declare const AvatarEmpty: Story; //# sourceMappingURL=Avatar.stories.d.ts.map