import React from 'react'; import { ViewStyle } from 'react-native'; interface ModalSheetProps { children: React.ReactNode; topPadding?: number; onClose?: () => void; showGrabber?: boolean; style?: ViewStyle; } declare const ModalSheet: React.FC; export { ModalSheet }; export default ModalSheet; //# sourceMappingURL=ModalSheet.d.ts.map