import React from 'react'; import { LayoutChangeEvent, View } from 'react-native'; import { IconProps } from '../icon'; interface InputContainerProps { /** Whether the field is disabled (only affect styles). */ disabled?: boolean; /** Whether the field is invalid (only affect styles). */ invalid?: boolean; /** Whether the field is focused (only affect styles). */ focused?: boolean; /** Props of an icon to display on the left. */ iconLeft?: IconProps; /** Props of an icon to display on the right. */ iconRight?: IconProps; /** Called when the layout of the input changes. */ onLayout?: (event: LayoutChangeEvent) => void; } export declare const InputContainer: React.ForwardRefExoticComponent>; export {};