UNPKG

852 BTypeScriptView Raw
1import React from 'react';
2import { WithFeature } from '../store/reducers/embeddedApp/loading';
3import { ComponentProps } from '../types';
4/**
5 * The UI component for the Loading feature
6 * @public
7 * */
8export declare class Loading extends React.PureComponent<WithFeature, never> {
9 render(): JSX.Element | null;
10}
11declare const _default: (React.ComponentClass<ComponentProps, any> & Pick<(React.ComponentClass<WithFeature, any> & typeof Loading) | (React.FunctionComponent<WithFeature> & typeof Loading), "defaultProps" | "prototype">) | (React.FunctionComponent<ComponentProps> & Pick<(React.ComponentClass<WithFeature, any> & typeof Loading) | (React.FunctionComponent<WithFeature> & typeof Loading), "defaultProps" | "prototype">);
12/**
13 * The Loading feature with its reducer, actions and UI component
14 * @public
15 * */
16export default _default;