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