UNPKG

@carbon/ibm-products

Version:

Carbon for IBM Products

27 lines (26 loc) 784 B
/** * Copyright IBM Corp. 2024 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import { Action, Option } from '../ConditionBuilder.types'; interface ConditionBuilderActionsProps { actions: Action[] | Option[]; className?: string; } declare const ConditionBuilderActions: { ({ actions, className, }: ConditionBuilderActionsProps): React.JSX.Element; propTypes: { /** * optional array of object that give the list of actions. */ actions: any; /** * Provide an optional class to be applied to the containing node. */ className: any; }; }; export default ConditionBuilderActions;