import { BaseInputProps } from '../../types/input'; import { HTMLAttributes, ReactNode } from 'react'; export interface InputWrapperProps extends HTMLAttributes, Pick { /** If true, removes border */ feControlsAfter?: ReactNode; /** If true, removes padding */ feControlsBefore?: ReactNode; /** If true, component does not use the fixed height */ feHeightAuto?: boolean; /** If true, adds padding on both the inline and block axis */ fePaddingAll?: boolean; } declare const InputWrapper: import("react").ForwardRefExoticComponent>; export default InputWrapper;