import React from 'react'; declare const wrapperComponent: (WrappedComponent: any) => { new (props: any): { componentDidMount(): void; componentDidUpdate: ({ display: wasOpen }: { display: any; }) => void; componentWillUnmount(): void; getOverlayCount: () => void; getSheetCount: () => void; getScrollPosition: () => void; preventBodyScroll: () => void; allowBodyScroll: () => void; handleMinimize: () => void; handleMaximize: () => void; handleClose: (event: any) => void; handleDragging: (event: any) => void; handleDraggingEnd: (event: any) => void; handleDraggingStart: (event: any) => void; render(): JSX.Element; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly<{}>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly<{}> & Readonly<{ children?: React.ReactNode; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; shouldComponentUpdate?(nextProps: Readonly<{}>, nextState: Readonly<{}>, nextContext: any): boolean; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly<{}>, prevState: Readonly<{}>): any; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{}>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly<{}>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly<{}>, nextState: Readonly<{}>, nextContext: any): void; }; propTypes: { className: import("prop-types").Requireable; display: import("prop-types").Requireable; full: import("prop-types").Requireable; inverted: import("prop-types").Requireable; stacked: import("prop-types").Requireable; style: import("prop-types").Requireable<(...args: any[]) => any>; withKnob: import("prop-types").Requireable; withOverlay: import("prop-types").Requireable; onClose: import("prop-types").Requireable<(...args: any[]) => any>; onDrag: import("prop-types").Requireable<(...args: any[]) => any>; onDragEnd: import("prop-types").Requireable<(...args: any[]) => any>; onDragStart: import("prop-types").Requireable<(...args: any[]) => any>; onMaximize: import("prop-types").Requireable<(...args: any[]) => any>; onMinimize: import("prop-types").Requireable<(...args: any[]) => any>; }; defaultProps: { display: boolean; withOverlay: boolean; onDrag: () => void; onDragEnd: () => void; onDragStart: () => void; onMaximize: () => void; onMinimize: () => void; }; contextType?: React.Context | undefined; }; export default wrapperComponent;