1234567 |
- import { FormItemProps } from '../FormItem/props';
- import { InputProps } from '../../Input/props';
- export interface FormInputProps extends Omit<InputProps, 'value' | 'defaultValue' | 'name'>, FormItemProps {
- inputClassName: string;
- inputClassStyle: string;
- }
- export declare const FormInputDefaultProps: FormInputProps;
|