You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
489 B

import React from 'react';
import { ViewStyle, ActivityIndicatorProps, StyleProp } from 'react-native';
import { Theme } from '../config/theme';
export declare type DialogLoadingProps = {
loadingStyle?: StyleProp<ViewStyle>;
loadingProps?: ActivityIndicatorProps;
theme?: Theme;
};
declare const _default: React.FunctionComponent<Omit<DialogLoadingProps, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<DialogLoadingProps>;
export default _default;