import type { StoryObj } from "@storybook/react"; import React from "react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent, "color"> & { active?: "active" | "inactive" | "unset"; activeAppearance?: "ring" | "shadow" | "ring-shadow"; color?: "neutral" | "brand" | "colorful" | import("@fluentui/react-avatar").AvatarNamedColor; idForColor?: string | undefined; name?: string; shape?: import("@fluentui/react-avatar").AvatarShape; size?: import("@fluentui/react-avatar").AvatarSize; } & { variant?: "default" | "square" | "rounded"; children?: React.ReactNode; name?: string; } & React.RefAttributes>; parameters: { layout: string; }; tags: string[]; argTypes: { name: { control: "text"; }; size: { control: "select"; options: number[]; }; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Sizes: Story; export declare const WithImage: Story; export declare const WithBadge: Story; //# sourceMappingURL=Avatar.stories.d.ts.map