import type {TextInputProps} from "react-native/types"

export type BottomSheetToolBoxTextInputBaseProps = Pick<
    TextInputProps,
    | "value"
    | "onChangeText"
    | "keyboardType"
    | "textContentType"
    | "autoCapitalize"
    | "spellCheck"
    | "autoCorrect"
    | "autoComplete"
    | "autoFocus"
    | "editable"
    | "onFocus"
    | "onBlur"
    | "multiline"
>
