UNPKG

489 BTypeScriptView Raw
1import React from 'react';
2import { ViewStyle, ActivityIndicatorProps, StyleProp } from 'react-native';
3import { Theme } from '../config/theme';
4export declare type DialogLoadingProps = {
5 loadingStyle?: StyleProp<ViewStyle>;
6 loadingProps?: ActivityIndicatorProps;
7 theme?: Theme;
8};
9declare const _default: React.FunctionComponent<Omit<DialogLoadingProps, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<DialogLoadingProps>;
10export default _default;