UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

5 lines (4 loc) 449 B
import { type ReactElement } from 'react'; import { type UCInput, type UCOPIBase } from '../../uc/index.js'; import type { UCFormProps } from '../lib/react/form.js'; export declare function UCForm<I extends UCInput | undefined = undefined, OPI0 extends UCOPIBase | undefined = undefined, OPI1 extends UCOPIBase | undefined = undefined>({ clearAfterExec, disabled, execState, onSubmit: onSubmitBase, uc, }: UCFormProps<I, OPI0, OPI1>): ReactElement;