export default BottomSheet; declare function BottomSheet({ title, subTitle, icon, onClosed, requestClose, style, buttonLeftType, buttonRightType, buttonLeftTitle, buttonRightTitle, onPressLeftButton, body, }: { title: any; subTitle: any; icon: any; onClosed: any; requestClose: any; style: any; buttonLeftType?: string | undefined; buttonRightType?: string | undefined; buttonLeftTitle: any; buttonRightTitle: any; onPressLeftButton: any; body: any; }): JSX.Element; declare namespace BottomSheet { namespace propTypes { const title: PropTypes.Requireable; const subTitle: PropTypes.Requireable; const icon: PropTypes.Requireable; const onClosed: PropTypes.Requireable<(...args: any[]) => any>; const style: PropTypes.Requireable; const buttonLeftType: PropTypes.Requireable; const buttonLeftTitle: PropTypes.Requireable; const buttonRightType: PropTypes.Requireable; const buttonRightTitle: PropTypes.Requireable; const buttonLeftTitleStyle: PropTypes.Requireable; const buttonRightTitleStyle: PropTypes.Requireable; const onPressLeftButton: PropTypes.Requireable<(...args: any[]) => any>; } } import PropTypes from "prop-types"; //# sourceMappingURL=BottomSheet.d.ts.map