import { BadgeGroupDefaultItem, BadgeGroupPropGetItemAs, BadgeGroupPropGetItemAttributes, BadgeGroupPropGetItemIconLeft, BadgeGroupPropGetItemIconRight, BadgeGroupPropGetItemKey, BadgeGroupPropGetItemLabel, BadgeGroupPropGetItemRef, BadgeGroupPropGetItemStatus, BadgeGroupPropGetItemView, BadgeGroupProps } from './types'; export declare function withDefaultGetters(props: BadgeGroupProps): { items: ITEM[]; fitMode?: "reduction" | "wrap"; getItemKey?: BadgeGroupPropGetItemKey | undefined; getItemLabel?: BadgeGroupPropGetItemLabel | undefined; getItemStatus?: BadgeGroupPropGetItemStatus | undefined; getItemView?: BadgeGroupPropGetItemView | undefined; getItemIconLeft?: BadgeGroupPropGetItemIconLeft | undefined; getItemIconRight?: BadgeGroupPropGetItemIconRight | undefined; getItemRef?: BadgeGroupPropGetItemRef | undefined; getItemAs?: BadgeGroupPropGetItemAs | undefined; getItemAttributes?: BadgeGroupPropGetItemAttributes | undefined; form?: import("../Badge").BadgePropForm; size?: import("../Badge").BadgePropSize; minified?: boolean; moreRef?: React.RefObject; moreAttributes?: Omit, "children">; } & Omit, "css" | "size" | "form" | "items" | "getItemLabel" | "getItemKey" | "getItemStatus" | "getItemAs" | "getItemAttributes" | "getItemRef" | "minified" | "fitMode" | "getItemView" | "getItemIconLeft" | "getItemIconRight" | "moreRef" | "moreAttributes"> & import("react").RefAttributes & (ITEM extends { key: string | number; } ? {} : { getItemKey: BadgeGroupPropGetItemKey; }) & { getItemKey: BadgeGroupPropGetItemKey | BadgeGroupPropGetItemKey; getItemLabel: BadgeGroupPropGetItemLabel | BadgeGroupPropGetItemLabel; getItemIconRight: BadgeGroupPropGetItemIconRight | BadgeGroupPropGetItemIconRight; getItemIconLeft: BadgeGroupPropGetItemIconLeft | BadgeGroupPropGetItemIconLeft; getItemView: BadgeGroupPropGetItemView | BadgeGroupPropGetItemView; getItemStatus: BadgeGroupPropGetItemStatus | BadgeGroupPropGetItemStatus; getItemRef: BadgeGroupPropGetItemRef | BadgeGroupPropGetItemRef; getItemAs: BadgeGroupPropGetItemAs | BadgeGroupPropGetItemAs; getItemAttributes: BadgeGroupPropGetItemAttributes | BadgeGroupPropGetItemAttributes; };