import React from 'react'; export interface Props { name: string; type: string; label?: string | JSX.Element; hasBar?: boolean; isFlex?: boolean; inputBg?: string; noMargin?: boolean; hasBorder?: boolean; placeholder?: string; borderWithBar?: boolean; inputBoxShadow?: string; fontSizeFamilyLabel?: string; fontSizeFamilyInput?: string; } export interface IInputProps { configs: Props; } type InputProps = JSX.IntrinsicElements['input'] & IInputProps; export declare function InputComponent({ configs, ...rest }: InputProps): React.JSX.Element; export {};