/** * Created by nghinv on Fri Jun 11 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import type { ActionSheetViewProps } from '@nghinv/react-native-action-sheet'; import type { BottomSheetViewProps } from '@nghinv/react-native-bottom-sheet'; import type { AlertViewProps } from '@nghinv/react-native-alert'; export interface ServiceProviderWithThemeType { children: React.ReactChild; actionSheetProps?: ActionSheetViewProps; bottomSheetProps?: BottomSheetViewProps; alertProps?: AlertViewProps; } declare function ServiceProviderWithTheme(props: ServiceProviderWithThemeType): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;