import { type StyleProp, type ViewStyle } from "react-native";
import { type AnimatedStyle, type SharedValue } from "react-native-reanimated";
export interface OverlayTextInputContainerProps {
    children: React.ReactNode;
    keyboardAwareSafeAreaBottomInsetFallback: number;
    minTextInputHeightSharedValue: SharedValue<number | null>;
    topInsetSharedValue: SharedValue<number | null>;
    bottomInsetSharedValue: SharedValue<number>;
    style?: AnimatedStyle<StyleProp<ViewStyle>>;
}
export declare function OverlayTextInputContainer({ children, style, minTextInputHeightSharedValue, topInsetSharedValue, keyboardAwareSafeAreaBottomInsetFallback, }: OverlayTextInputContainerProps): import("react").JSX.Element;
//# sourceMappingURL=overlay-text-input-container.d.ts.map