import { InputHTMLAttributes } from 'react';
import { default as styles } from './Input.module.css';
import { FormPublicProps } from '../FormInput/FormInput';
export { styles as InputClasses };
export interface InputProps extends FormPublicProps, InputHTMLAttributes {
}
/**
* Renders a text input field with enhanced styling and integration into a form structure. Supports customization through `FormPublicProps` and standard input attributes.
* It automatically adapts typography and layout based on the platform, ensuring a consistent user experience across devices.
*/
export declare const Input: import('react').ForwardRefExoticComponent>;