import { PropType, CSSProperties } from 'vue'; import type { Size } from './interface'; import { ExtractPublicPropTypes } from '../../_utils'; export interface AvatarGroupInjection { size?: Size | undefined; } interface AvatarOption { src: string; } declare const avatarGroupProps: { readonly max: NumberConstructor; readonly maxStyle: PropType; readonly options: { readonly type: PropType; readonly default: () => never[]; }; readonly vertical: BooleanConstructor; readonly size: PropType; }; export declare type AvatarGroupProps = ExtractPublicPropTypes; declare const _default: import("vue").DefineComponent<{ readonly max: NumberConstructor; readonly maxStyle: PropType; readonly options: { readonly type: PropType; readonly default: () => never[]; }; readonly vertical: BooleanConstructor; readonly size: PropType; }, { mergedClsPrefix: import("vue").ComputedRef; restOptions: import("vue").ComputedRef; displayedOptions: import("vue").ComputedRef; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; readonly options: { readonly type: PropType; readonly default: () => never[]; }; readonly vertical: BooleanConstructor; readonly size: PropType; }>>, { vertical: boolean; options: AvatarOption[]; }>; export default _default;