import React from 'react'; export interface InputProps extends React.ComponentPropsWithoutRef<'input'> { /** Input fields default to `display: block;`. Set this to `true` to apply the inline modifier. */ inline?: boolean; /** Make the text right aligned */ textRightAlign?: boolean; } export declare const Input: React.ForwardRefExoticComponent>;