import { type StyleProp, type ViewStyle } from 'react-native'; import type { IconType } from '../../utils/TypesUtil'; export interface InputElementProps { icon: IconType; onPress: () => void; disabled?: boolean; style?: StyleProp; } export declare function InputElement({ icon, disabled, onPress, style }: InputElementProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map