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) 432 B
import { Dispatch, SetStateAction } from "react"; import { Attribute } from "../../types"; interface NumericEvaluationFormProps { attribute: Attribute; onSubmit: (name: string, expression: string) => void; setVisible: Dispatch<SetStateAction<boolean>>; } export declare function NumericEvaluationForm({ attribute, onSubmit, setVisible, }: NumericEvaluationFormProps): import("react/jsx-runtime").JSX.Element; export {};