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