import * as React from "react"; interface ResizableColumnsProps { columns?: Array; } interface ResizableColumnsState { columns: Array; } export declare const resizableColumnsTableWrapper: (TableComponent: any) => { new (props: ResizableColumnsProps): { resizableTitle: (props: any) => JSX.Element; components: { header: { cell: any; }; }; handleResize: (index: number, _e: React.SyntheticEvent, data: any) => void; render(): JSX.Element; context: any; setState(state: ResizableColumnsState | ((prevState: Readonly, props: Readonly) => ResizableColumnsState | Pick | null) | Pick | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly & Readonly<{ children?: React.ReactNode; }>; state: Readonly; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any; componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void; 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; }; contextType?: React.Context | undefined; }; export {};