import React from 'react';
import { IInputField } from './types';
/**
 * Generates the input field component for forms.
 *
 * @param {IInputField} props - The props object containing the input field properties.
 * @returns {React.ReactNode} - The rendered input field component.
 */
export declare const InputField: React.FC<IInputField>;
