import { AvatarViewProps } from '../avatarView'; type SingleAvatarType = { asset?: AvatarViewProps['children']; } & Omit; export type Props = { /** @default [] */ avatars: SingleAvatarType[]; /** @default 'horizontal' */ orientation?: 'horizontal' | 'diagonal'; /** @default 48 */ size?: AvatarViewProps['size']; } & Pick; export default function AvatarLayout({ avatars, orientation: orientationProp, size, className, interactive, ...restProps }: Props): import("react").JSX.Element | null; export {}; //# sourceMappingURL=AvatarLayout.d.ts.map