export declare const CHIPACTION_CLASSNAME = "k-chip-action";
export declare enum chipActionType {
    REMOVE = "remove",
    MORE = "more"
}
export type KendoChipActionProps = {
    type?: chipActionType | string;
};
export declare const ChipAction: (props: KendoChipActionProps & React.HTMLAttributes<HTMLSpanElement>) => import("react/jsx-runtime").JSX.Element;
