@attio/react-native-bottom-sheet-toolbox-text-input
Version:
11 lines • 836 B
TypeScript
import * as React from "react";
import { TextInput } from "react-native";
import { type SharedValue } from "react-native-reanimated";
import type { BottomSheetToolBoxTextInputBaseProps } from "../../types";
import { type UseMinOverlayHeightSharedValueArgs } from "./use-min-overlay-height-shared-value";
export interface OverlayTextInputProps extends Omit<UseMinOverlayHeightSharedValueArgs, "fallbackLines">, BottomSheetToolBoxTextInputBaseProps {
minTextInputHeightSharedValue: SharedValue<number | null>;
ref?: React.ForwardedRef<TextInput>;
}
export declare function OverlayTextInput({ bottomInsetSharedValue, topInsetSharedValue, minTextInputHeightSharedValue, textInputStyle, autoFocus, multiline, ref, value, ...textInputProps }: OverlayTextInputProps): React.JSX.Element;
//# sourceMappingURL=overlay-text-input.d.ts.map