import React from 'react'; import { NativeAttributes } from '../../Box'; import { BoxProps } from '../../Box'; declare type StandaloneInputElementProps = { /** * Used in order to declare input element without labels */ standalone?: boolean; }; export declare type InputElementProps = BoxProps & NativeAttributes<'input' | 'textarea'> & StandaloneInputElementProps; declare const InputElement: React.ForwardRefExoticComponent & React.RefAttributes>; export default InputElement;