import React, { CSSProperties } from 'react'; import { InputProps } from '../../types'; /** * Input wrapper component. It naturally will give a input header and input helper for active and error states. */ export interface IInputWrapper extends Pick { /** controlled focus state */ isActive?: boolean; className?: string; style?: CSSProperties; } export declare const InputWrapper: React.FC;