import React from 'react'; type ErrorType = { error?: string; errorClassName?: string; }; export type InputWrapperProps = ErrorType & { className?: string; appendClassName?: string; labelHidden?: boolean; labelClassName?: string; htmlFor: string; required?: boolean; label: string | React.ReactNode; children: React.ReactNode; style?: React.CSSProperties; }; export declare const InputWrapper: ({ className, appendClassName, labelHidden, labelClassName, htmlFor, required, label, error, errorClassName, children, style, }: InputWrapperProps) => import('./react/jsx-runtime.js').JSX.Element; export {};