import React from 'react'; export interface InputContainerProps { label?: string; labelAction?: React.ReactNode; htmlFor?: string; error?: React.ReactNode; helpText?: React.ReactNode; helpTextAddition?: React.ReactNode; fullWidth?: boolean; required?: boolean; children: React.ReactNode; orientation?: 'vertical' | 'horizontal'; size?: 'sm' | 'md' | 'lg'; labelWidth?: string; labelAlignment?: 'top' | 'center'; modified?: boolean; } export declare function InputContainer({ label, labelAction, htmlFor, error, helpText, helpTextAddition, fullWidth, required, children, orientation, size, labelWidth, labelAlignment, modified, }: InputContainerProps): React.ReactElement;