import React from 'react'; import { ViewStyle } from 'react-native'; import { SizeValue } from '../theme/types'; export interface InputContainerProps { children: React.ReactNode; size?: SizeValue; disabled?: boolean; error?: boolean; focused?: boolean; radius?: any; startSection?: React.ReactNode; endSection?: React.ReactNode; style?: ViewStyle; } /** * Unified input container that provides consistent styling * for all input-like components (Input, Select, AutoComplete, etc.) */ export declare function InputContainer({ children, size, disabled, error, focused, radius, startSection, endSection, style, }: InputContainerProps): React.JSX.Element;