import * as React from 'react'; export declare type Direction = 'top' | 'right' | 'bottom' | 'left' | 'topRight' | 'bottomRight' | 'bottomLeft' | 'topLeft'; export declare type OnStartCallback = (e: React.MouseEvent | React.TouchEvent, dir: Direction) => void; export interface Props { direction: Direction; className?: string; replaceStyles?: React.CSSProperties; onResizeStart: OnStartCallback; children: React.ReactNode; } export declare class Resizer extends React.PureComponent { onMouseDown: (e: React.MouseEvent) => void; onTouchStart: (e: React.TouchEvent) => void; render(): JSX.Element; }