import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; type BottomSheetProps = { height?: number; children?: React.ReactNode; containerStyle?: StyleProp | undefined; }; export type BottomSheetRef = { open: () => void; close: () => void; }; export declare const BottomSheet: React.ForwardRefExoticComponent>; export {};