import React from 'react'; import { SurfaceProps } from '../Surface'; import { DataType } from '../types'; export declare type InputType = 'text' | 'checkbox' | 'submit' | 'textarea' | 'password' | 'email' | 'select' | 'number' | DataType; export declare type InputProps = Omit, 'onDrag' | 'onDragEnd' | 'onDragStart'> & Omit & { onEnter?: Function; type?: InputType; form?: Object; step?: any; }; export declare function Input({ onEnter, type, nodeRef, children, ...props }: InputProps): JSX.Element; //# sourceMappingURL=Input.d.ts.map