UNPKG

pricing4react

Version:

A library of components that ease the integration of feature toggling driven by pricing plans into your React application's UI.

10 lines (9 loc) 438 B
import { Dispatch, SetStateAction } from "react"; import { Attribute } from "../../types"; interface ConditionEvaluationFormProps { attribute: Attribute; onSubmit: (name: string, expression: string) => void; setVisible: Dispatch<SetStateAction<boolean>>; } export declare function ConditionEvaluationForm({ attribute, onSubmit, setVisible, }: ConditionEvaluationFormProps): import("react/jsx-runtime").JSX.Element; export {};