import React from 'react'; import { Input as AntInput } from 'antd'; import { InputProps as AntInputProps } from 'antd/lib/input'; import TextArea from './TextArea'; import './styles.scss'; export declare type InputProps = { interaction?: boolean; variant?: 'basic' | 'underlined'; } & AntInputProps; declare const ForwardRefInput: React.ForwardRefExoticComponent<{ interaction?: boolean; variant?: 'basic' | 'underlined'; } & AntInputProps & React.RefAttributes>; declare const ExportSelect: { TextArea?: typeof TextArea; Password?: typeof AntInput.Password; } & typeof ForwardRefInput; export default ExportSelect;