import React, { ComponentPropsWithoutRef } from "react"; import { VariantProps } from "tailwind-variants"; import { AvatarImageProps } from "../Avatar"; import { Flex, FlexProps } from "../Flex"; declare const avatarVariants: import("tailwind-variants").TVReturnType<{ show: { true: string; false: string; }; position: { center: string; left: string; right: string; }; }, undefined, string, { show: { true: string; false: string; }; position: { center: string; left: string; right: string; }; }, undefined, import("tailwind-variants").TVReturnType<{ show: { true: string; false: string; }; position: { center: string; left: string; right: string; }; }, undefined, string, unknown, unknown, undefined>>; type Position = Exclude["position"], undefined>; type PositionOverrides = Partial>; type AnimationOverrides = { className?: string; }; type Overrides = { base?: Partial; position?: PositionOverrides>; }; export type ImageStackProps = { srcs?: AvatarImageProps["src"][]; size?: AvatarImageProps["size"]; show?: boolean; animate?: "fade-in"; overrides?: { Avatar?: Overrides; animation?: Overrides; centerBackground?: FlexProps; }; } & Omit, "children">; export declare const ImageStack: React.ForwardRefExoticComponent<{ srcs?: AvatarImageProps["src"][]; size?: AvatarImageProps["size"]; show?: boolean; animate?: "fade-in"; overrides?: { Avatar?: Overrides; animation?: Overrides; centerBackground?: FlexProps; }; } & Omit, "height" | "width"> & import("../..").TextColorVariantProps & React.RefAttributes, "ref">, "children"> & React.RefAttributes>; export {}; //# sourceMappingURL=ImageStack.d.ts.map