import { InputProps } from 'antd'; import { PropsTypes } from '@orca-fe/deye-typings'; import { TitleContentPropsOnly } from '../title-content'; export interface CurrentInputProps extends InputProps, TitleContentPropsOnly { } declare const Input: { (props: CurrentInputProps): JSX.Element; title: string; propsDef: PropsTypes[]; }; export default Input;