import * as React from 'react';
export declare class Resizer extends React.PureComponent<any> {
    static defaultProps: {
        height: number;
        width: number;
        withResponsiveHeight: boolean;
        withResponsiveWidth: boolean;
    };
    getResizableProps: () => {
        minConstraints: any[];
        maxConstraints: any[];
        height: any;
        width: any;
    };
    render(): JSX.Element;
}
export default Resizer;
