UNPKG

481 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<Pick<DialogLoadingProps, "loadingStyle" | "loadingProps">> | React.ForwardRefExoticComponent<DialogLoadingProps>;
10export default _default;