import React from 'react'; /** * Allows two animation frames to complete to allow other components to update * and re-render before mounting and rendering an expensive `WrappedComponent`. */ interface SkipServerProps { children: React.ReactNode; } interface SkipServerState { shouldRender: boolean; } declare class SkipServer extends React.PureComponent { static propTypes: { children: import("prop-types").Requireable; }; state: { shouldRender: boolean; }; componentDidMount(): void; render(): {} | null | undefined; } export default SkipServer;