import { BottomSheetBackdrop, BottomSheetFlatList, BottomSheetFooter, BottomSheetFooterContainer, BottomSheetHandle, BottomSheetScrollView, BottomSheetSectionList, BottomSheetTextInput, BottomSheetView, BottomSheetVirtualizedList } from "@gorhom/bottom-sheet"; import React from "react"; import { BottomSheetInstance, BottomSheetProps, SheetIds } from "../types"; interface BottomSheetFC extends React.MemoExoticComponent> { (props: BottomSheetProps & React.RefAttributes>): React.JSX.Element; View: typeof BottomSheetView; ScrollView: typeof BottomSheetScrollView; FlatList: typeof BottomSheetFlatList; SectionList: typeof BottomSheetSectionList; VirtualizedList: typeof BottomSheetVirtualizedList; Handle: typeof BottomSheetHandle; Footer: typeof BottomSheetFooter; FooterContainer: typeof BottomSheetFooterContainer; Backdrop: typeof BottomSheetBackdrop; TextInput: typeof BottomSheetTextInput; } declare const BottomSheet: BottomSheetFC; export default BottomSheet; //# sourceMappingURL=gorhom.d.ts.map