import { ChipsDefaultItem, ChipsPropGetItemActive, ChipsPropGetItemAs, ChipsPropGetItemAttributes, ChipsPropGetItemDisabled, ChipsPropGetItemIconLeft, ChipsPropGetItemIconRight, ChipsPropGetItemLabel, ChipsPropGetItemRef, ChipsPropGetItemStatus, ChipsProps } from './types'; export declare const defaultGetItemIconRight: ChipsPropGetItemIconRight; export declare const defaultGetItemActive: ChipsPropGetItemActive; export declare const defaultGetItemDisabled: ChipsPropGetItemDisabled; export declare const defaultGetItemIconLeft: ChipsPropGetItemIconLeft; export declare const defaultGetItemStatus: ChipsPropGetItemStatus; export declare const defaultGetItemLabel: ChipsPropGetItemLabel; export declare const defaultGetItemAs: ChipsPropGetItemAs; export declare const defaultGetItemAttributes: ChipsPropGetItemAttributes; export declare const defaultGetItemRef: ChipsPropGetItemRef; export declare function withDefaultGetters(props: ChipsProps): { size?: import("./types").ChipsPropSize; activeView?: import("./types").ChipsPropActiveView; items: ITEM[]; interactive?: boolean; disabled?: boolean; getItemStatus?: ChipsPropGetItemStatus | undefined; getItemLabel?: ChipsPropGetItemLabel | undefined; getItemIconLeft?: ChipsPropGetItemIconLeft | undefined; getItemIconRight?: ChipsPropGetItemIconRight | undefined; getItemRef?: ChipsPropGetItemRef | undefined; getItemAs?: ChipsPropGetItemAs | undefined; getItemAttributes?: ChipsPropGetItemAttributes | undefined; getItemActive?: ChipsPropGetItemActive | undefined; getItemDisabled?: ChipsPropGetItemDisabled | undefined; onItemClick?: import("./types").ChipsPropOnItemClick | undefined; onItemRightIconClick?: import("./types").ChipsPropItemOnRightIconClick | undefined; } & Omit, "css" | "size" | "disabled" | "items" | "getItemLabel" | "getItemDisabled" | "getItemStatus" | "onItemClick" | "getItemActive" | "getItemAs" | "getItemAttributes" | "getItemRef" | "interactive" | "getItemIconLeft" | "getItemIconRight" | "activeView" | "onItemRightIconClick"> & import("react").RefAttributes & (ITEM extends { label: string; } ? {} : { getItemLabel: ChipsPropGetItemLabel; }) & { getItemLabel: ChipsPropGetItemLabel | ChipsPropGetItemLabel; getItemIconRight: ChipsPropGetItemIconRight | ChipsPropGetItemIconRight; getItemIconLeft: ChipsPropGetItemIconLeft | ChipsPropGetItemIconLeft; getItemStatus: ChipsPropGetItemStatus | ChipsPropGetItemStatus; getItemRef: ChipsPropGetItemRef | ChipsPropGetItemRef; getItemAs: ChipsPropGetItemAs | ChipsPropGetItemAs; getItemAttributes: ChipsPropGetItemAttributes | ChipsPropGetItemAttributes; getItemActive: ChipsPropGetItemActive | ChipsPropGetItemActive; getItemDisabled: ChipsPropGetItemDisabled | ChipsPropGetItemDisabled; };