UNPKG

@progress/kendo-react-form

Version:

React Form is a small and fast package for form state management with zero dependencies. KendoReact Form package

20 lines (19 loc) 847 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { FieldProps } from './interfaces/FieldProps.js'; import * as React from 'react'; /** * Represents the Field component that is used inside the KendoReact Form component. * It uses `name` property to access field value and meta information from Form state. */ export declare const Field: { (props: FieldProps & { [customProp: string]: any; }): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null; displayName: string; };