/// import * as React from 'react'; import { Property } from '../../../WebRx'; export interface SplashProps { header: any; logo?: string; text?: string; progress?: Property | number; fluid?: boolean; } export interface SplashComponentProps extends React.HTMLProps, SplashProps { } export declare class Splash extends React.Component { static displayName: string; static defaultProps: Partial; render(): JSX.Element; private renderLogo(); }