import * as React from 'react'; export interface Props { shouldUpdate: boolean; } export declare class StaticContainer extends React.Component { static defaultProps: { shouldUpdate: boolean; }; shouldComponentUpdate(nextProps: any): any; render(): {}; }