import { StyleProp, ViewStyle } from 'react-native'; import { ReactNode } from 'react'; import { InputProps } from './types'; import { SizeType } from '../../@types/input'; import { SxProps } from '../../lib/styleDictionary'; export type InputBoxProps = Pick & { text?: ReactNode; size?: SizeType; onPress?: () => void; sx?: SxProps & { container?: SxProps; toggle?: SxProps; wrapperIcon?: SxProps; icon?: SxProps; text?: SxProps; helperText?: SxProps; }; styles?: { root?: StyleProp; container?: StyleProp; toggle?: StyleProp; wrapperIcon?: StyleProp; icon?: StyleProp; text?: StyleProp; helperText?: StyleProp; }; }; export declare function InputBox({ sx, isDisabled, styles, onPress: onPressProp, shape, size, background, error, borderColor, startContent, endContent, style, color, placeholder, text, helperText }: InputBoxProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=InputBox.d.ts.map