/**
 * Describes the different actions available for the interaction with the <a href="/user-input/chip">NeonChip</a>
 * component.
 */
export declare enum NeonChipAction {
    /** The Click action triggers a click event in the component. */
    Click = "click",
    /** The Remove action triggers the removal of the component. This can be used for filter chips. */
    Remove = "remove"
}
